/**
 * All of the CSS for your global functionality should be
 * included in this file.
 */

/*---------------------------------------------------------------*/
/*--------------------------- General ---------------------------*/
/*---------------------------------------------------------------*/
html 
{
    margin: 0 !important;
    /*overflow-wrap: anywhere;*/
}

body 
{
    margin: 0;
}

p, label, h4, a, button, input 
{
    /*font-style: normal;
    font-weight: 400;
    text-decoration: none;*/
}

h1, h2, h3, h4, h5 
{
    line-height: initial;
    margin: 0;
}

h1, h2, h3 
{
	font-weight: 700;
}

/*---------------------------------------------------------------*/
/*---------------------------- Bitnami --------------------------*/
/*---------------------------------------------------------------*/
#bitnami-banner {display:none;}

/*---------------------------------------------------------------*/
/*--------------------- Top Bar - Admin Bar ---------------------*/
/*---------------------------------------------------------------*/
/* Public Admin Bar */
#wpadminbar #wp-admin-bar-wp-logo
{
    display: none;
}


/*---------------------------------------------------------------*/
/*----------------------- 404 Not Found -------------------------*/
/*---------------------------------------------------------------*/

.not-found-404
{
    font-family: 'Poppins' !important;
    color: #403A60;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.not-found-404 .ks-flex-container 
{

}

.not-found-404 .columns
{

}

.not-found-404 .column1
{
    max-width: 500px;
    margin-right: 8%;
}

.not-found-404 .column2
{
    text-align: center;
}

.not-found-404 h2
{
    font-family: 'Poppins' !important;
    color: #403A60;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.not-found-404 p
{
    color: #333333;
    font-size: 20px;
    line-height: 1.8;
}

.not-found-404 a
{
    font-family: 'Poppins' !important;
    color: #B55C80;
    text-decoration: underline;
}

.not-found-404 h1
{
    font-family: 'Poppins' !important;
    font-size: 150px;
    font-weight: bolder;
    color: #403A60;
}

.not-found-404 .misc-image
{
    background: url(../templates/404/images/misc.png) no-repeat;
    width: 699px;
    height: 388px;
    min-height: 35vh;
    display: block;
}


@media only screen and (max-width: 1024px)
{
    .not-found-404 
    {
        height: auto;
        margin-bottom: 25px;
    }

    .not-found-404 .ks-flex-container 
    {
        flex-direction: column-reverse;
    }

    .not-found-404 .columns 
    {
        width: 90%;
    }

    .not-found-404 .column1
    {
        margin-right: 0;
    }

    .not-found-404 .column2
    {
        
    }

    .not-found-404 h2 
    {
        font-size: 25px;
    }

    .not-found-404 p
    {
        font-size: 12px;
    }

    .not-found-404 h1 
    {
        font-size: 125px;
    }

    .not-found-404 .misc-image 
    {
        width: auto;
        height: auto;
        background-size: 100%;
    }

    
}

/*==================================================================================*/
/*================================== Animations ====================================*/
/*==================================================================================*/

/*---- Grow ----*/
.animation-bounce-grow-vertical-1 
{
    animation-name: animation-bounce-grow-vertical-1 ;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes animation-bounce-grow-vertical-1 
{
    0%   { transform: scale(1, 1); }
    50%  { transform: scale(1, 1.15); }
    100% { transform: scale(1, 1); }
}

.animation-bounce-grow-1 
{
    animation-name: animation-bounce-grow-1;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes animation-bounce-grow-1
{
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/*- Grow Hover */
.animation-bounce-grow-hover-1:hover 
{
    animation-name: animation-bounce-grow-hover-1 ;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes animation-bounce-grow-hover-1 
{
    0%   { transform: scale(1, 1); }
    100% { transform: scale(1.15, 1.15); }
}

.transition-bounce-grow-hover-1 
{
    transform: scale(1);
    transition: all 0.25s ease-in-out;
}

.transition-bounce-grow-hover-1:hover
{
    transform: scale(1.15);
}

.transition-bounce-grow-hover-1-selected 
{
    transform: scale(1.15);
}

.ks-transition-bounce-grow-hover-2 
{
    transform: scale(1);
    transition: all 0.25s ease-in-out;
}

.ks-transition-bounce-grow-hover-2:hover
{
    transform: scale(1.05);
}

.ks-transition-bounce-grow-hover-2-selected 
{
    transform: scale(1.05);
}

.animation-bounce-grow-show 
{
    animation-name: animation-bounce-grow-show-anim;
    animation-timing-function: ease-in-out;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes animation-bounce-grow-show-anim
{
    0%   { transform: scale(0); }
    75%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/*---- Rotations ----*/
.animation-rotate-self-1
{
    animation-name: animation-rotate-self-1;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes animation-rotate-self-1
{
    0%   { transform: rotateZ(0); }
    25%  { transform: rotateZ(-25deg); }
    50%  { transform: rotateZ(0); }
    75%  { transform: rotateZ(25deg); }
    100%  { transform: rotateZ(0); }
}

.animation-rotate-self-2
{
    animation-name: animation-rotate-self-2;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes animation-rotate-self-2
{
    0%   { transform: rotateZ(0deg); }
    20%  { transform: rotateZ(25deg); }
    40%  { transform: rotateZ(0deg); }
    60%  { transform: rotateZ(-25deg); }
    80%  { transform: rotateZ(360deg); }
    100% { transform: rotateZ(360deg); }
}

/*---- Blink Fade ----*/
.animation-fade-blink-1 
{
    animation-name: animation-fade-blink-1 !important;
    animation-timing-function: linear !important;
    animation-duration: 2s !important;
    animation-iteration-count: infinite !important;
}

@keyframes animation-fade-blink-1  
{
    0%   { opacity: 1; }
    50%  { opacity: 0.25; }
    100% { opacity: 1; }
}

/* Fade Alpha */
.ks-animation-fade-alpha-0
{
    opacity: 0;
}

.ks-animation-fade-alpha-1 
{
    animation-name: ks-animation-fade-alpha-1;
    animation-timing-function: linear;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes ks-animation-fade-alpha-1  
{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.animation-fade-alpha-1-fast
{
    animation-name: animation-fade-alpha-1-fast;
    animation-timing-function: linear;
    animation-duration: 0.25s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes animation-fade-alpha-1-fast 
{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

/* Bounce Up */
.ks-animation-keyframes-bounce-in-up  
{
    animation-name: ks-animation-keyframes-bounce-in-up;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes ks-animation-keyframes-bounce-in-up 
{
   0% 
   {
      opacity: 0;
      transform: translateY(2000px);
   }
   60% 
   {
      opacity: 1;
      transform: translateY(-30px);
   }
   80% 
   {
      opacity: 1;
      transform: translateY(10px);
   }
   100% 
   {
      opacity: 1;
      transform: translateY(0);
   }
} 

/* Bounce Down */
.ks-animation-keyframes-bounce-in-down  
{
    animation-name: ks-animation-keyframes-bounce-in-down;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes ks-animation-keyframes-bounce-in-down 
{
   0% 
   {
      opacity: 0;
      transform: translateY(-2000px);
   }
   60% 
   {
      opacity: 1;
      transform: translateY(30px);
   }
   80% 
   {
      opacity: 1;
      transform: translateY(-10px);
   }
   100% 
   {
      opacity: 1;
      transform: translateY(0);
   }
} 

/* Bounce From Left */
.ks-animation-keyframes-bounce-in-from-left  
{
    animation-name: ks-animation-keyframes-bounce-in-from-left;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes ks-animation-keyframes-bounce-in-from-left 
{
   0% 
   {
      opacity: 0;
      transform: translateX(-2000px);
   }
   60% 
   {
      opacity: 1;
      transform: translateX(30px);
   }
   80% 
   {
      opacity: 1;
      transform: translateX(-10px);
   }
   100% 
   {
      opacity: 1;
      transform: translateX(0);
   }
} 


/* Spin */
.ks-animations-spin
{
    -webkit-animation: ks-animations-spin-keyframes 2s linear infinite;
    animation: ks-animations-spin-keyframes 2s linear infinite;
}

@keyframes ks-animations-spin-keyframes 
{
    0% 
    {
        transform: rotate(0deg);
    }
    to 
    {
        transform: rotate(1turn);
    }
}

/*==================================================================================*/
/*==================================================================================*/
/*==================================================================================*/

/*==================================================================================*/
/*=============================== System Messages ==================================*/
/*==================================================================================*/

.input-error-message 
{
    background: #F5F5F5;
    width: 100%;
    min-height: 40px;
    padding: 10px 25px;
    box-sizing: border-box;
    position: relative;
    margin: 20px 0;
    display: none;
}

.input-error-message:before 
{
    content: " ";
    width: 7px;
    height: 100%;
    background: #EE325A;
    position: absolute;
    top: 0;
    left: 0;
}

.input-error-message p
{
    font-size: 15px;
    color: #43425D;
}

/*---------------------------------------------------------------*/
/*------------------------ Loader Scene -------------------------*/
/*---------------------------------------------------------------*/
.system-loader-scene,
.system-loader-popup,
.system-process-loader-popup
{
    background: #FBFBFB;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: block;
    overflow: hidden;
    top: 0;
    left: 0;
}

.system-loader-scene .wrapper,
.system-loader-popup .wrapper,
.system-process-loader-popup .wrapper
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.system-loader-scene .logo, 
.system-loader-popup .logo,
.system-process-loader-popup .logo
{
    background: url(../images/loader/loader.gif) no-repeat;
    width: 90px;
    height: 90px;
    margin-bottom: 0;
    background-size: contain;
}

.system-loader-scene .loading-text,
.system-loader-popup .loading-text,
.system-process-loader-popup .loading-text 
{
    color: #45435E;
    font-size: 30px;
    text-transform: initial;
    margin: 0;
    font-weight: bold;
    display: none;
}

/*---------------------------------------------------------------*/
/*------------------------ Loader Popup -------------------------*/
/*---------------------------------------------------------------*/
.system-loader-popup 
{
    z-index: 999999;
    /*background: rgba(67,66,93,0.75);*/
    display: none;
}

.system-loader-popup .wrapper 
{
    display: flex;
}


.system-loader-popup .logo 
{
    /*background: url(../images/shared/shared_icon_kuadsystem_circle.png) no-repeat;
    width: 226px;
    height: 226px;
    margin-bottom: 25px;*/
}

.system-loader-popup .logo img 
{

}

.system-loader-popup .loading-text 
{
    color: #ffffff;
    text-shadow: 2px 2px #000000;
}

/*---------------------------------------------------------------*/
/*-------------------- Process Loader Popup ---------------------*/
/*---------------------------------------------------------------*/

.system-process-loader-popup
{
    z-index: 999999;
    background: rgba(67,66,93,0.75);
    display: none;
}

.system-process-loader-popup .wrapper 
{
    display: flex;
}


.system-process-loader-popup .ks-global-loader-animations-spinner-lds-ring 
{

}

.system-process-loader-popup .logo img 
{

}

.system-process-loader-popup .loading-text 
{
    color: #ffffff;
    font-size: 20px;
    text-shadow: 2px 2px #000000;
    display: block;
    position: relative;
    top: 10px;
}


/*---------------------------------------------------------------*/
/*--------------------- Loader Animations -----------------------*/
/*---------------------------------------------------------------*/
.ks-global-loader-animations-spinner-lds-ring 
{
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.ks-global-loader-animations-spinner-lds-ring div 
{
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: ks-global-loader-animations-spinner-lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.ks-global-loader-animations-spinner-lds-ring div:nth-child(1) 
{
    animation-delay: -0.45s;
}

.ks-global-loader-animations-spinner-lds-ring div:nth-child(2) 
{
    animation-delay: -0.3s;
}

.ks-global-loader-animations-spinner-lds-ring div:nth-child(3) 
{
    animation-delay: -0.15s;
}

@keyframes ks-global-loader-animations-spinner-lds-ring 
{
    0% 
    {
        transform: rotate(0deg);
    }
    100% 
    {
        transform: rotate(360deg);
    }
}

/*---------------------------------------------------------------*/
/*------------ Alert - Popup Validation Fail Fields -------------*/
/*---------------------------------------------------------------*/
.popup-Validation-fail
{
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    left: 0;
    align-items: center;
    text-align: center;
    align-content: center;
    z-index: 999999;

    transition-property: opacity;
    transition-duration: 1s;
} 

.popup-Validation-fail h3
{

}

.popup-Validation-fail button
{

}

.popup-Validation-fail .close-background 
{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.popup-Validation-fail .wrapper
{
    background: #ffffff;
    width: 100%;
    max-width: 700px;
    padding: 0;
    display: block;
    text-align: center;
    margin: auto;
    position: relative;
    box-sizing: content-box;
}

.popup-Validation-fail .wrapper .padding 
{
    padding: 15px 10% 5px 10%;
    border-top: none;
    border: thin solid #CFCFCF;
}

.popup-Validation-fail .wrapper h4
{
    font-size: 30px;
    line-height: 5;
    text-align: center;
    font-weight: normal;
    height: 106px;
    background: #B55C80;
    color: #FFFFFF;
    width: 100%;
    margin: 0;
}

.popup-Validation-fail .wrapper h5
{
    font-size: 12px;
    text-align: left;
    font-weight: normal;
    color: #333333;
    width: 100%;
    margin: 25px 0;
    text-transform: none;
    letter-spacing: normal;
}

.popup-Validation-fail .wrapper p
{
    font-size: 12px;
    text-align: left;
    font-weight: 600;
    line-height: 2.5;
    color: #333333;
}

.popup-Validation-fail .close-button
{
    background: #259591;
    width: 125px;
    height: 35px;
    position: relative;
    right: 0;
    top: 0;
    color: #ffffff;
    cursor: pointer;
    margin: 50px auto 25px auto;
    border-radius: 50px;
    font-size: 15px;
    line-height: 2.6;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.popup-Validation-fail .close-button:hover
{
  background: #FF659F;
}


@media only screen and (max-width: 1090px)
{

} 

/*---------------------------------------------------------------*/
/*---------------- Popup - Contact / Subscription ---------------*/
/*---------------------------------------------------------------*/

.ks-popup-contact-subscription
{
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    left: 0;
    align-items: center;
    text-align: center;
    align-content: center;
    z-index: 999999;

    transition-property: opacity;
    transition-duration: 1s;
} 

.ks-popup-contact-subscription .close-background 
{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ks-popup-contact-subscription .wrapper
{
    background: #ffffff;
    width: 100%;
    max-width: 765px;
    height: 500px;
    padding: 175px 5px 5px 5px;
    display: block;
    text-align: center;
    margin: auto;
    position: relative;
    box-sizing: border-box;
    border-radius: 15px;
}

.ks-popup-contact-subscription .wrapper .decoration 
{
    background: url(../images/popup/popup_icon.png) no-repeat;
    background-size: cover;
    width: 305px;
    height: 202px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
}

.ks-popup-contact-subscription .wrapper .padding 
{
    padding: 0 10%;
}

.ks-popup-contact-subscription .wrapper h4
{
    font-size: 50px;
    line-height: 1;
    text-align: center;
    font-weight: 600;
    color: #353535;
    width: 100%;
    margin: 40px 0 30px 0;
}

.ks-popup-contact-subscription .wrapper p
{
    font-size: 22px;
    text-align: center;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    width: 88%;
}

.ks-popup-contact-subscription .close-button
{
    background: #CB507F;
    width: 175px;
    height: 50px;
    position: relative;
    right: 0;
    top: 0;
    color: #ffffff;
    cursor: pointer;
    margin: 25px auto 25px auto;
    border-radius: 50px;
    font-size: 15px;
    line-height: 2.6;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.ks-popup-contact-subscription .close-button:hover
{
  background: #FF659F;
}

@media only screen and (max-width: 1090px)
{
    .ks-popup-contact-subscription .wrapper 
    {
        padding: 195px 5px 5px 5px;
    }

    .ks-popup-contact-subscription .wrapper .padding 
    {
        padding: 0 5%;
    }

    .ks-popup-contact-subscription .wrapper .decoration 
    {
        width: 295px;
        height: 200px;
        top: -15px;
    }

    .ks-popup-contact-subscription .wrapper h4 
    {
        font-size: 28px;
    }

    .ks-popup-contact-subscription .wrapper p 
    {
        font-size: 18px;
        width: 100%;
    }

    .ks-popup-contact-subscription .close-button 
    {
        margin: 25px auto 25px auto;
    }
} 

/*-----------------------------------------------------------------------------*/
/*-----------------|| Message Popup  - Confirm / Cancel ||---------------------*/
/*-----------------------------------------------------------------------------*/
.ks-system-message-popup-confirm-cancel 
{
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    left: 0;
    align-items: center;
    text-align: center;
    align-content: center;
    z-index: 999999;
    transition-property: opacity;
    transition-duration: 1s;
}

.ks-system-message-popup-confirm-cancel-background 
{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.ks-system-message-popup-confirm-cancel-wrapper 
{
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 0 !important;
    display: block;
    text-align: center;
    margin: auto !important;
    position: relative;
    box-sizing: content-box !important;
    border-radius: 50px;
}

.ks-system-message-popup-confirm-cancel-header 
{
    height: 140px;
    background: #403A60;
    color: #FFFFFF;
    width: 100%;
    position: relative;
    top: -2px;
    border-radius: 50px 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ks-system-message-popup-confirm-cancel-header-icon 
{
    position: absolute;
    top: -50px;
}

.ks-system-message-popup-confirm-cancel-header-icon img
{
    
}

.ks-system-message-popup-confirm-cancel-header-title 
{
    font-size: 30px !important;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF !important;
    width: 100%;
}

.ks-system-message-popup-confirm-cancel-content 
{
    background-color: #fff;
    border-radius: 0 0 50px 50px;
    padding: 25px 10px 5px 10px;
}

.ks-system-message-popup-confirm-cancel-content p
{
    font-size: 18px !important;
    font-weight: normal;
    line-height: 2;
    text-align: center;
    padding: 0 5px;
    margin: 1em 0;
    color: #231D48 !important;
}

.ks-system-message-popup-confirm-cancel-content .errors-list 
{
    text-align: left;
}

.ks-system-message-popup-confirm-cancel-content h4
{
    font-size: 10px;
    text-align: left;
    font-weight: bold;
    color: #4D4F5C;
    width: 100%;
    margin: 25px 0;
    text-transform: none;
    letter-spacing: normal;
}

.ks-system-message-popup-confirm-cancel-content h5
{
    font-size: 12px;
    text-align: left;
    font-weight: bold;
    color: #4D4F5C;
    width: 100%;
    margin: 25px 0;
    text-transform: none;
    letter-spacing: normal;
}

.ks-system-message-popup-confirm-cancel-buttons 
{
    display: flex;
    justify-content: center;
}

.ks-system-message-popup-confirm-cancel .ks-system-message-popup-confirm-cancel-button-confirm,
.ks-system-message-popup-confirm-cancel .ks-system-message-popup-confirm-cancel-button-cancel
{
    background: #CC507E;
    width: 160px;
    height: 42px;
    position: relative;
    right: 0;
    top: 0;
    color: #ffffff;
    cursor: pointer;
    margin: 25px auto 25px auto;
    border-radius: 5px;
    font-size: 15px;
    line-height: 2.6;
    display: flex;
    justify-content: center;
}

.ks-system-message-popup-confirm-cancel-button-cancel 
{

}

.ks-system-message-popup-confirm-cancel-button-confirm:hover,
.ks-system-message-popup-confirm-cancel-button-cancel:hover 
{
    background: rgb(255, 119, 169);
}

@media only screen and (max-width: 1024px)
{
    .ks-system-message-popup-confirm-cancel-wrapper 
    {
        margin: auto 10px;
    }
}

/*==================================================================================*/
/*==================================================================================*/
/*==================================================================================*/



/*==================================================================================*/
/*=================================== Generics =====================================*/
/*==================================================================================*/

.ks-display-none-forced
{
    display: none !important;
}

/*---------------------------------------------------------------*/
/*---------------------------- Texts ----------------------------*/
/*---------------------------------------------------------------*/
.ks-r-title-1 
{
  font-size: calc(3em + 3vw);
  font-weight: bold;
}

.ks-r-title-2 
{
  font-size: calc(3em + 5vw);
  font-weight: bold;
}

.ks-r-title-3 
{
  font-size: calc(2.75em + 2.75vw);
  font-weight: bold;
}

.ks-r-title-4 
{
  font-size: calc(4.0em + 5vw);
  font-weight: bold;   
}

.ks-r-sub-title-1 
{
  font-size: calc(1.0em + 1.0vw);
  font-weight: bold;
}

.ks-r-sub-title-2 
{
  font-size: calc(1.5em + 1.25vw);
  font-weight: bold;
}

.ks-r-sub-title-3
{
  font-size: calc(1.5em + 2.0vw);
  font-weight: bold;
}

.ks-r-sub-title-4 
{
  font-size: calc(1.25em + 1.5vw);
  font-weight: bold;
}

.ks-r-sub-title-5 
{
    font-size: calc(0.8em + 0.8vw);
    font-weight: bold;
}

.ks-r-sub-title-6 
{
    font-size: calc(2.0em + 2.0vw);
    font-weight: normal;
}

.ks-r-sub-title-7 
{
    font-size: calc(1.0em + 1.4vw);
    font-weight: bold;
}

.ks-r-sub-title-8 
{
  font-size: calc(0.9em + 1.0vw);
  font-weight: bold;
}

.ks-r-sub-title-9 
{
  font-size: calc(1.4em + 0.3vw);
  font-weight: bold;
}

.ks-r-sub-title-10 
{
    font-size: calc(0.8em + 0.5vw);
    font-weight: bold;
}


p,
.ks-r-p-1
{
    font-size: calc(0.8em + 0.25vw);
}

.ks-r-p-2
{
    font-size: calc(0.6em + 0.25vw);
}

.ks-r-p-3
{
    font-size: calc(0.8em + 0.6vw);
}

.ks-r-p-4
{
    font-size: calc(0.6em + 0.4vw);
}

.ks-r-p-5
{
    font-size: calc(1.0em + 0.6vw);
}

.ks-r-p-6
{
    font-size: calc(0.8em + 0.45vw);
}

.ks-r-p-0-e 
{
    font-size: 1.0em;
}
.ks-r-p-1-e 
{
    font-size: 1.1em;
}
.ks-r-p-2-e 
{
    font-size: 1.2em;
}
.ks-r-p-3-e 
{
    font-size: 1.3em;
}
.ks-r-p-4-e 
{
    font-size: 1.4em;
}
.ks-r-p-5-e 
{
    font-size: 1.5em;
}
.ks-r-p-8-e 
{
    font-size: 1.8em;
}
.ks-r-p-10-e 
{
    font-size: 2em;
}

/* Notes */
.ks-r-note-title-1 
{
  font-size: calc(1.25em + 1.25vw);
  text-transform: uppercase;
  font-weight: bold;
}

/* Line Height */
.ks-line-height-1 
{
    line-height: 1;
}

.ks-line-height-1-c 
{
    line-height: calc(1.2em + 0.5vw);
}

.ks-line-height-0-5 
{
    line-height: 0.5;
}

.ks-line-height-1-1 
{
    line-height: 1.1;
}

.ks-line-height-2
{
    line-height: 2;
}

/* Text Align */
.ks-text-align-center 
{
    text-align: center;
}

.ks-text-align-left 
{
    text-align: left;
}

.ks-text-align-right 
{
    text-align: right;
}

.ks-text-align-justify 
{
    text-align: justify;
}

/* Text color */
.ks-text-color-white 
{
    color: #ffffff;
}
.ks-text-color-white-i
{
    color: #ffffff !important;
}
.ks-text-color-pink 
{
    color: #CB507F;
}
.ks-text-color-black 
{
    color: #000;
}

/* Words / Spaces */
.ks-text-white-space-pre-wrap
{
    white-space: pre-wrap;
}

.ks-text-word-break-break-word
{
    word-break: break-word;
}

/* Hde */
.ks-text-hide-0
{
    text-indent: -99999px;
    position: absolute;
}

/* Extras */
.ks-font-weight-bold 
{
    font-weight: bold;
}

.ks-font-family-generals
{
    font-family: "Poppins","Montserrat",Arial,sans-serif;
}

@media only screen and (max-width: 1090px)
{
    .ks-mobile-text-align 
    {
        text-align: center;
    }

    /* Text Align */
    .ks-mobile-text-align-left 
    {
        text-align: left;
    }
} 

/*---------------------------------------------------------------*/
/*--------------------------- Buttons ---------------------------*/
/*---------------------------------------------------------------*/
.ks-r-button-title-1 
{
    font-size: calc(0.75em + 1vw);
    font-weight: normal;
}

.ks-r-button-title-2 
{
    font-size: calc(0.6em + 0.6vw);
    font-weight: normal;
}

.ks-r-button-title-3 
{
    font-size: calc(0.75em + 0.75vw);
    font-weight: normal;
}

.ks-r-sub-menu-button-1 
{
    font-size: calc(0.65em + 0.65vw);
    font-weight: normal;
}

/* Navigation */
.ks-nav-button-1 
{
    font-size: calc(0.5em + 0.5vw);
    font-weight: normal;
}

.ks-nav-button-2 
{
    font-size: calc(0.7em + 0.5vw);
    font-weight: normal;
}
/*---------------------------------------------------------------*/
/*---------------------------- Forms ----------------------------*/
/*---------------------------------------------------------------*/
.ks-r-form-input-title 
{
    font-size: calc(0.75em + 1vw);
    font-weight: bold;
}

.ks-r-form-input-text 
{
    font-size: calc(0.75em + 0.5vw);
    font-weight: normal;
}

.ks-r-form-input-text::placeholder
{
    font-size: calc(0.75em + 0.5vw);
}

.ks-r-form-input-text-2 
{
    font-size: calc(0.8em + 0.25vw);
    font-weight: normal;
}

.ks-r-form-input-text-2::placeholder
{
    font-size: calc(0.8em + 0.25vw);
}

.ks-r-form-input-text-3 
{
    font-size: calc(1.15em + 0.1vw);
    font-weight: normal;
}

.ks-r-form-input-text-3::placeholder
{
    font-size: calc(1.15em + 0.1vw);
}

.ks-r-form-input input[type=checkbox] 
{

}

.ks-r-form-input-button 
{
    width: auto;
    height: auto;
    font-size: calc(1em + 1vw);
    padding: calc(1.0em + 1vw) calc(3em + 1vw);
    font-weight: bold;
    margin: 25px auto 25px auto;
}

/* Inputs Extras */
.ks-form-input,
input[type=email].ks-form-input, 
input[type=password].ks-form-input, 
input[type=tel].ks-form-input, 
input[type=text].ks-form-input, 
input[type=number].ks-form-input, 
select.ks-form-input, 
textarea.ks-form-input 
{
    background: #EEEEEE;
    color: #333;
    border: none;
    padding: 15px;
}

.ks-form-input::placeholder,
input[type=email].ks-form-input::placeholder, 
input[type=password].ks-form-input::placeholder,  
input[type=tel].ks-form-input::placeholder, 
input[type=text].ks-form-input::placeholder, 
input[type=number].ks-form-input::placeholder, 
select.ks-form-input::placeholder, 
textarea.ks-form-input::placeholder 
{
    color: #333;
}

.ks-form-input:focus 
{

}

/*==== Buttons ====*/

/*- Type A -*/
.wp-admin input#submit,
#submit-support-message,
.btn-primary,
.wp-generate-pw,
.page-title-action,
.popup-Validation-fail .close-button,
.pagenow-ks_forms .print-button,
.ks-m-newsletter-export-form-button,
.ks-m-newsletter-export-all-form-button,
.ks-system-message-popup-confirm-cancel-button-confirm,
.ks-global-inputs-system-tab-list-item-detail-button-accept,
.ks-global-inputs-system-submit,
.et-save-button,
.woocommerce-save-button,
.mp-save-button,
#wpf_submit,
#publish, 
.wp-core-ui button.save,
.edit-tag-actions input[type=submit]
{
    background-color: #1BA59D !important;
    background: #1BA59D !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    border: 2px solid #1BA59D !important;
    font-size: 14px !important;
    font-weight: 600;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: pointer;
    height: fit-content;
    min-height: auto !important;
    width: fit-content;
    line-height: 2 !important;
    padding: 5px 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.wp-admin input#submit:hover,
#submit-support-message:hover,
.btn-primary:hover,
.wp-generate-pw:hover,
.page-title-action:hover,
.popup-Validation-fail .close-button:hover,
.pagenow-ks_forms .print-button:hover,
.ks-m-newsletter-export-form-button:hover,
.ks-m-newsletter-export-all-form-button:hover,
.ks-system-message-popup-confirm-cancel-button-confirm:hover,
.ks-global-inputs-system-tab-list-item-detail-button-accept:hover,
.ks-global-inputs-system-submit:hover,
.et-save-button:hover,
.woocommerce-save-button:hover,
.mp-save-button:hover,
#wpf_submit:hover,
#publish:hover,
.wp-core-ui button.save:hover,
.edit-tag-actions input[type=submit]:hover    
{
    background-color: #ffffff !important;
    color: #1BA59D !important; 
}

.wp-admin input#submit:focus,
.wp-admin input#submit:active,
#submit-support-message:focus,
#submit-support-message:active,
.btn-primary:focus,
.btn-primary:active,
.wp-generate-pw:focus,
.wp-generate-pw:active,
.page-title-action:focus,
.page-title-action:active,
.popup-Validation-fail .close-button:focus,
.popup-Validation-fail .close-button:active,
.pagenow-ks_forms .print-button:focus,
.pagenow-ks_forms .print-button:active,
.ks-m-newsletter-export-form-button:focus,
.ks-m-newsletter-export-form-button:active,
.ks-m-newsletter-export-all-form-button:focus,
.ks-m-newsletter-export-all-form-button:active,
.ks-system-message-popup-confirm-cancel-button-confirm:focus,
.ks-system-message-popup-confirm-cancel-button-confirm:active,
.ks-global-inputs-system-tab-list-item-detail-button-accept:focus,
.ks-global-inputs-system-tab-list-item-detail-button-accept:active,
.ks-global-inputs-system-submit:focus,
.ks-global-inputs-system-submit:active,
.et-save-button:focus,
.et-save-button:active,
.woocommerce-save-button:focus,
.woocommerce-save-button:active,
.mp-save-button:focus,
.mp-save-button:active,
#wpf_submit:focus,
#wpf_submit:active,
#publish:focus,
#publish:active,
.wp-core-ui button.save:focus,
.wp-core-ui button.save:active,
.edit-tag-actions input[type=submit]:focus,
.edit-tag-actions input[type=submit]:active          
{
    font-weight: 600 !important;
    background-color: #1BA59D !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: none;
}

/*- Type B -*/
.wp-core-ui .button,
button#copy_billing,
.wp-core-ui button.wp-hide-pw,
.tablenav .tablenav-pages .button,
#post-body .ks-global-inputs-system-image-upload-button,
.wp-media-buttons .insert-media,
.wp-core-ui button#ks-global-inputs-system-image-gallery-manage-gallery,
#minor-publishing-actions #save-post,
#minor-publishing-actions .preview,
.media-modal-content button.copy-attachment-url,
.media-modal-content button.media-button-reverse,
.ks-global-inputs-system-button,
.ks-global-inputs-system-tab-list-item-detail-button,
.kuad-admin-google-map-add-marker-group, 
.kuad-admin-google-map-remove-marker-group, 
.kuad-admin-google-map-add-marker, 
.kuad-admin-google-map-remove-marker,
.submitduplicate,
.save-variation-changes
{
    background-color: #403A60 !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    border: 2px solid #403A60 !important;
    font-size: 14px !important;
    font-weight: 600;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: pointer;
    width: fit-content;
    min-width: 30px;
    min-height: 27px !important;
    line-height: 2;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.wp-core-ui .button:hover,
button#copy_billing:hover,
.wp-core-ui button.wp-hide-pw:hover,
.tablenav .tablenav-pages .button:hover,
#post-body .ks-global-inputs-system-image-upload-button:hover,
.wp-media-buttons .insert-media:hover,
.wp-core-ui button#ks-global-inputs-system-image-gallery-manage-gallery:hover,
#minor-publishing-actions #save-post:hover,
#minor-publishing-actions .preview:hover,
.media-modal-content button.copy-attachment-url:hover,
.media-modal-content button.media-button-reverse:hover,
.ks-global-inputs-system-button:hover,
.ks-global-inputs-system-tab-list-item-detail-button:hover,
.kuad-admin-google-map-add-marker-group:hover, 
.kuad-admin-google-map-remove-marker-group:hover, 
.kuad-admin-google-map-add-marker:hover, 
.kuad-admin-google-map-remove-marker:hover,
.submitduplicate:hover  
{
    background-color: #ffffff !important;
    color: #403A60 !important; 
}

.wp-core-ui .button:focus,
.wp-core-ui .button:active,
button#copy_billing:focus,
button#copy_billing:active,
.wp-core-ui button.wp-hide-pw:focus,
.wp-core-ui button.wp-hide-pw:active,
.tablenav .tablenav-pages .button:focus,
.tablenav .tablenav-pages .button:active,
#post-body .ks-global-inputs-system-image-upload-button:focus,
#post-body .ks-global-inputs-system-image-upload-button:active,
.wp-media-buttons .insert-media:focus,
.wp-media-buttons .insert-media:active,
.wp-core-ui button#ks-global-inputs-system-image-gallery-manage-gallery:focus,
.wp-core-ui button#ks-global-inputs-system-image-gallery-manage-gallery:active,
#minor-publishing-actions #save-post:focus,
#minor-publishing-actions #save-post:active,
#minor-publishing-actions .preview:focus,
#minor-publishing-actions .preview:active,
.media-modal-content button.copy-attachment-url:focus,
.media-modal-content button.copy-attachment-url:active,
.media-modal-content button.media-button-reverse:focus,
.media-modal-content button.media-button-reverse:active,
.ks-global-inputs-system-button:focus,
.ks-global-inputs-system-button:active,
.ks-global-inputs-system-tab-list-item-detail-button:focus,
.ks-global-inputs-system-tab-list-item-detail-button:active,
.kuad-admin-google-map-add-marker-group:focus,
.kuad-admin-google-map-add-marker-group:active,  
.kuad-admin-google-map-remove-marker-group:focus,
.kuad-admin-google-map-remove-marker-group:active, 
.kuad-admin-google-map-add-marker:focus,
.kuad-admin-google-map-add-marker:active, 
.kuad-admin-google-map-remove-marker:focus,
.kuad-admin-google-map-remove-marker:active,
.submitduplicate:focus, 
.submitduplicate:active      
{
    font-weight: 600 !important;
    background-color: #403A60 !important; 
    color: #ffffff !important; 
    outline: none;
    box-shadow: none;
}

/*- Type C -*/
button#destroy-sessions,
.wp-core-ui button.wp-cancel-pw,
.inline-edit-row .submit button.cancel,
#post-body .ks-global-inputs-system-image-remove-image-button,
.submitbox .submitdelete,
.ks-global-inputs-system-image-gallery-item-remove,
.wp-core-ui button#ks-global-inputs-system-image-gallery-empty-gallery,
.wp-admin .button-cancel,
.media-modal-content button.media-button-skip,
.category-left-container #delete-link .delete,
.ks-global-inputs-system-tab-list-item-detail-button-remove,
.ks-system-message-popup-confirm-cancel-button-cancel,
.ks-global-inputs-system-button-remove,
.wp-core-ui .ks-global-inputs-system-button-remove,
.ks-admin-reservation-calendar-query-type-remove, 
.ks-admin-reservation-calendar-addresses-remove,
#delete-link .delete 
{
    background-color: #B55C80 !important;
    background: #B55C80 !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    border: 2px solid #B55C80 !important;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: pointer;
    height: fit-content;
    min-height: auto;
    width: fit-content;
    min-width: auto;
    line-height: 2;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

button#destroy-sessions:hover,
.wp-core-ui button.wp-cancel-pw:hover,
.inline-edit-row .submit button.cancel:hover,
#post-body .ks-global-inputs-system-image-remove-image-button:hover,
.submitbox .submitdelete:hover,
.ks-global-inputs-system-image-gallery-item-remove:hover,
.wp-core-ui button#ks-global-inputs-system-image-gallery-empty-gallery:hover,
.wp-admin .button-cancel:hover,
.media-modal-content button.media-button-skip:hover,
.category-left-container #delete-link .delete:hover,
.ks-global-inputs-system-tab-list-item-detail-button-remove:hover,
.ks-system-message-popup-confirm-cancel-button-cancel:hover,
.ks-global-inputs-system-button-remove:hover,
.wp-core-ui .ks-global-inputs-system-button-remove:hover,
.ks-admin-reservation-calendar-query-type-remove:hover, 
.ks-admin-reservation-calendar-addresses-remove:hover,
#delete-link .delete:hover    
{
   background-color: #ffffff !important;
   color: #B55C80 !important; 
}

button#destroy-sessions:focus,
button#destroy-sessions:active,
.wp-core-ui button.wp-cancel-pw:focus,
.wp-core-ui button.wp-cancel-pw:active,
.inline-edit-row .submit button.cancel:focus,
.inline-edit-row .submit button.cancel:active,
#post-body .ks-global-inputs-system-image-remove-image-button:focus,
#post-body .ks-global-inputs-system-image-remove-image-button:active,
.submitbox .submitdelete:focus,
.submitbox .submitdelete:active,
.ks-global-inputs-system-image-gallery-item-remove:focus,
.ks-global-inputs-system-image-gallery-item-remove:active,
.wp-core-ui button#ks-global-inputs-system-image-gallery-empty-gallery:focus,
.wp-core-ui button#ks-global-inputs-system-image-gallery-empty-gallery:active,
.wp-admin .button-cancel:focus,
.wp-admin .button-cancel:active,
.media-modal-content button.media-button-skip:focus,
.media-modal-content button.media-button-skip:active,
.category-left-container #delete-link .delete:focus,
.category-left-container #delete-link .delete:active,
.ks-global-inputs-system-tab-list-item-detail-button-remove:focus,
.ks-global-inputs-system-tab-list-item-detail-button-remove:active,
.ks-system-message-popup-confirm-cancel-button-cancel:focus,
.ks-system-message-popup-confirm-cancel-button-cancel:active,
.ks-global-inputs-system-button-remove:focus,
.ks-global-inputs-system-button-remove:active,
.wp-core-ui .ks-global-inputs-system-button-remove:focus,
.wp-core-ui .ks-global-inputs-system-button-remove:active,
.ks-admin-reservation-calendar-query-type-remove:focus,
.ks-admin-reservation-calendar-query-type-remove:active, 
.ks-admin-reservation-calendar-addresses-remove:focus,
.ks-admin-reservation-calendar-addresses-remove:active,
#delete-link .delete:focus,
#delete-link .delete:active    
{
font-weight: 600 !important;
   background-color: #B55C80 !important; 
   color: #ffffff !important; 
   outline: none;
   box-shadow: none;
}

/*- Type D -*/
.tablenav .action,
.search-box #search-submit,
#post-query-submit
{
    background-color: #403A60 !important;
    background: url(../images/general/select-icon-white.png) no-repeat right 10px top 48% #403A60 !important;
    border-radius: 100px !important;
    color: #ffffff !important;
    border: 2px solid #403A60 !important;
    font-size: 14px !important;
    font-weight: 600;
    width: 30px;
    height: 30px !important;
    min-height: 30px !important;
    position: relative;
    text-indent: -9999px;
    box-shadow: none !important;
    text-shadow: none !important;
    box-sizing: border-box;
    padding: 0;
}

.tablenav .action:hover,
.search-box #search-submit:hover,
#post-query-submit:hover
{
    background: url(../images/general/select-icon-white.png) no-repeat right 10px top 48% !important;
    background-color: #403A60 !important;
    color: #ffffff !important;
}

.tablenav .action:focus,
.tablenav .action:active,
.search-box #search-submit:focus,
.search-box #search-submit:active,
#post-query-submit:focus,
#post-query-submit:active
{
font-weight: 600 !important;
   background-color: #403A60 !important; 
   color: #ffffff !important; 
   outline: none;
   box-shadow: none;
}

/* Inputs */
.ks-global-inputs-system-inputs input[type=date], 
.ks-global-inputs-system-inputs input[type=datetime-local], 
.ks-global-inputs-system-inputs input[type=datetime], 
.ks-global-inputs-system-inputs input[type=email], 
.ks-global-inputs-system-inputs input[type=month], 
.ks-global-inputs-system-inputs input[type=number], 
.ks-global-inputs-system-inputs input[type=password], 
.ks-global-inputs-system-inputs input[type=search], 
.ks-global-inputs-system-inputs input[type=tel], 
.ks-global-inputs-system-inputs input[type=text], 
.ks-global-inputs-system-inputs input[type=time], 
.ks-global-inputs-system-inputs input[type=url], 
.ks-global-inputs-system-inputs input[type=week], 
.ks-global-inputs-system-inputs select, 
.ks-global-inputs-system-inputs .wp-core-ui select, 
.ks-global-inputs-system-inputs textarea, 
.ks-global-inputs-system-inputs .inline-edit-row fieldset input[name=aa], 
.ks-global-inputs-system-inputs .inline-edit-row fieldset input[name=jj], 
.ks-global-inputs-system-inputs .inline-edit-row fieldset input[name=hh], 
.ks-global-inputs-system-inputs .inline-edit-row fieldset input[name=mn], 
.ks-global-inputs-system-inputs .media-sidebar .setting input[type=text], 
.ks-global-inputs-system-inputs .attachment-details .setting textarea, 
.ks-global-inputs-system-inputs .media-frame input[type=search] 
{
    border: thin solid #999999 !important;
    border-radius: 50px;
    margin-bottom: 8px !important;
    height: 33px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    color: #808285;
    box-sizing: border-box;
    line-height: 1 !important;
    background-color: #fff !important;
}


/* Inputs / Buttons Disabled */

.ks-global-inputs-system-inputs-buttons-disabled,
.ks-global-inputs-system-inputs-buttons-disabled:hover,
.ks-global-inputs-system-inputs-buttons-disabled select,
.ks-global-inputs-system-inputs-buttons-disabled select:hover,
.ks-global-inputs-system-inputs-buttons-disabled .ui-selectmenu-button,
.ks-global-inputs-system-inputs-buttons-disabled .ui-selectmenu-button:hover,

.ks-global-inputs-system-inputs-buttons-container-disabled select,
.ks-global-inputs-system-inputs-buttons-container-disabled select:hover,
.ks-global-inputs-system-inputs-buttons-container-disabled .ui-selectmenu-button,
.ks-global-inputs-system-inputs-buttons-container-disabled .ui-selectmenu-button:hover    
{
    background-color: #CCCCCC !important;
    cursor: not-allowed !important;
    border-color: #CCCCCC !important;
    color: #fff !important;
    user-select: none !important;
    pointer-events: none !important;
    filter: grayscale(100%);
}

/* Buttons Extras */
.ks-form-button-green 
{
    color: #31d190 !important;
    border-width: 2px !important;
    border-color: #31d190 !important;
    font-size: 16px;
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
    font-weight: 700;
    background: none;
    cursor: pointer;
}

.ks-form-button-green :hover 
{
    background-color: #31d190 !important;
    color: #ffffff !important;
    padding: 5px 16px !important;
    cursor: pointer;
}

.ks-form-button-yellow 
{
    position: relative;
    padding: .3em 1em;
    border: 2px solid;
    color: #fcb21e;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.7em!important;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}

.ks-form-button-yellow:hover 
{
    background-color: #fcb21e !important;
    color: #ffffff !important;
    padding: 5px 16px !important;
    cursor: pointer;
}


@media only screen and (max-width: 1090px)
{
    .ks-r-mobile-form-input-text-3 
    {
        font-size: calc(1.15em + 0.1vw);
        font-weight: normal;
    }

    .ks-r-mobile-form-input-text-3::placeholder
    {
        font-size: calc(1.15em + 0.1vw);
    }
} 

/*---------------------------------------------------------------*/
/*------------------------- Print Data --------------------------*/
/*---------------------------------------------------------------*/
.ks-m-print-container 
{
    -webkit-print-color-adjust: exact;
}


/*---------------------------------------------------------------*/
/*------------------------ Banner Header ------------------------*/
/*---------------------------------------------------------------*/

/* Header Banner */
.ks-r-banner-header 
{
    background-size: cover;
    background-color: #545556;
    width: 100%;
    height: 30vw;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: left;
    margin-top: 5px;
    position: relative;
}

.ks-r-banner-header img 
{
    width: 100%;
}

@media only screen and (max-width: 1090px)
{
    .ks-r-banner-header 
    {
        min-height: 75vh;
        background-position: left;
    }
} 

/*---------------------------------------------------------------*/
/*--------------------------- Gallery ---------------------------*/
/*---------------------------------------------------------------*/

/* Thumbs */
.ks-r-thumb-title-1 
{

}


/*---------------------------------------------------------------*/
/*------------------------- Containers --------------------------*/
/*---------------------------------------------------------------*/

/* Displays */
.ks-display-block 
{
    display: block;
}

.ks-display-inline-block 
{
    display: inline-block;
}

/* Displays li */
.ks-li-display-block li 
{
    display: block !important;
}

.ks-display-none-force 
{
    display: none !important;
}

.ks-z-index-1 
{
    z-index: 1;
}

/* Sizes */
.ks-width-50-p 
{
    width: 50%;
}
.ks-width-80-p 
{
    width: 80%;
}
.ks-width-90-p 
{
    width: 90%;
}
.ks-width-95-p 
{
    width: 95%;
}
.ks-width-100-p 
{
    width: 100%;
}
.ks-width-100-p-i
{
    width: 100% !important;
}

/* Displays li */
.ks-li-width-100-p li 
{
    width: 100%;
}

/* Margin */
.ks-margin-initial
{
    margin: initial;
}

.ks-margin-initial-i
{
    margin: initial !important;
}

.ks-margin-0-auto 
{
    margin: 0 auto;
}

.ks-margin-0-auto-i
{
    margin: 0 auto !important;
}

.ks-margin-10 
{
    margin: 10px;
}

.ks-margin-15 
{
    margin: 15px;
}

.ks-margin-20 
{
    margin: 20px;
}

.ks-margin-top-0 
{
    margin-top: 0;
}


.ks-margin-top-10 
{
    margin-top: 10px;
}

.ks-margin-top-20 
{
    margin-top: 20px;
}

.ks-margin-top-25 
{
    margin-top: 25px;
}

.ks-margin-top-50 
{
    margin-top: 50px;
}

.ks-margin-top-50-i 
{
    margin-top: 50px !important;
}

.ks-margin-top-75 
{
    margin-top: 75px;
}

.ks-margin-top-75-i
{
    margin-top: 75px !important;
}

.ks-margin-top-100 
{
    margin-top: 100px;
}

.ks-margin-bottom-5
{
    margin-bottom: 5px;
}

.ks-margin-bottom-10 
{
    margin-bottom: 10px;
}

.ks-margin-bottom-10-i
{
    margin-bottom: 10px !important;
}


.ks-margin-bottom-15 
{
    margin-bottom: 15px;
}

.ks-margin-bottom-20 
{
    margin-bottom: 20px;
}

.ks-margin-bottom-0-i-sub-title .ks-global-inputs-system-sub-title
{
    margin-bottom: 0 !important;
}

.ks-margin-bottom-0-i 
{
    margin-bottom: 0 !important;
}

.ks-margin-bottom-20-i
{
    margin-bottom: 20px !important;
}

.ks-margin-bottom-25 
{
    margin-bottom: 25px;
}

.ks-margin-bottom-25-i
{
    margin-bottom: 25px !important;
}

.ks-margin-bottom-30 
{
    margin-bottom: 30px;
}

.ks-margin-bottom-35 
{
    margin-bottom: 35px;
}

.ks-margin-bottom-35-i 
{
    margin-bottom: 35px !important;
}

.ks-margin-bottom-50 
{
    margin-bottom: 50px;
}

.ks-margin-bottom-75 
{
    margin-bottom: 75px;
}

.ks-margin-bottom-100
{
    margin-bottom: 100px;
}

.ks-margin-left-15-i-sub-title .ks-global-inputs-system-sub-title
{
    margin-left: 15px !important;
}

.ks-margin-left-10 
{
    margin-left: 10px;
}

.ks-margin-left-20 
{
    margin-left: 20px;
}

.ks-margin-left-40 
{
    margin-left: 40px;
}

.ks-margin-left-50 
{
    margin-left: 50px;
}

.ks-margin-left-75 
{
    margin-left: 75px;
}

.ks-margin-left-2p
{
    margin-left: 2%;
}


.ks-margin-right-5 
{
    margin-right: 5px;
}

.ks-margin-right-10 
{
    margin-right: 10px;
}

.ks-margin-right-10-i
{
    margin-right: 10px !important;
}

.ks-margin-right-10p 
{
    margin-right: 10%;
}

.ks-margin-right-15 
{
    margin-right: 15px;
}

.ks-margin-right-15-i
{
    margin-right: 15px !important;
}

.ks-margin-right-25 
{
    margin-right: 25px;
}

.ks-margin-right-25-i
{
    margin-right: 25px !important;
}

.ks-margin-right-40 
{
    margin-right: 40px;
}

.ks-margin-right-50 
{
    margin-right: 50px;
}

.ks-margin-right-0-i
{
    margin-right: 0 !important;
}

.ks-margin-lr-2p 
{
    margin-left: 2%;
    margin-right: 2%;
    box-sizing: border-box;
}

.ks-margin-lr-2p:last-child 
{
    margin-right: 0;
}


.ks-margin-lr-4p 
{
    margin-left: 4%;
    margin-right: 4%;
    box-sizing: border-box;
}

.ks-margin-lr-4p:last-child 
{
    margin-right: 0;
}

.ks-margin-lr-10p
{
    margin-left: 10px;
    margin-right: 10px;
    box-sizing: border-box;
}

.ks-margin-lr-10p 
{
    margin-left: 10%;
    margin-right: 10%;
    box-sizing: border-box;
}

.ks-margin-lr-10p-i
{
    margin-left: 10% !important;
    margin-right: 10% !important;
    box-sizing: border-box;
}


.ks-margin-lr-10
{
    margin-left: 10px;
    margin-right: 10px;
    box-sizing: border-box;
}

.ks-margin-lr-25
{
    margin-left: 25px;
    margin-right: 25px;
    box-sizing: border-box;
}

.ks-margin-tb-5
{
    margin-top: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
}

.ks-margin-tb-10
{
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.ks-margin-tb-15
{
    margin-top: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.ks-margin-tb-20
{
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.ks-margin-tb-25
{
    margin-top: 25px;
    margin-bottom: 25px;
    box-sizing: border-box;
}


.ks-margin-tb-50
{
    margin-top: 50px;
    margin-bottom: 50px;
}


/* Padding */
.ks-padding-5p 
{
    padding: 5%;
    box-sizing: border-box;
}

.ks-padding-10
{
    padding: 10px;
    box-sizing: border-box;
}

.ks-padding-20
{
    padding: 20px;
    box-sizing: border-box;
}

.ks-padding-25
{
    padding: 25px;
    box-sizing: border-box;
}

.ks-padding-lr-4p
{
    padding-left: 4%;
    padding-right: 4%;
    box-sizing: border-box;
}

.ks-padding-lr-5p
{
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
}

.ks-padding-lr-10p
{
    padding-left: 10%;
    padding-right: 10%;
    box-sizing: border-box;
}

.ks-padding-top-50
{
    padding-top: 50px;
}

.ks-padding-tb-50
{
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.ks-padding-tb-25
{
    padding-top: 25px;
    padding-bottom: 25px;
    box-sizing: border-box;
}

.ks-padding-tb-5p
{
    padding-top: 5%;
    padding-bottom: 5%;
}

.ks-padding-tb-10p
{
    padding-top: 10%;
    padding-bottom: 10%;
}

.ks-padding-top-0
{
    padding-top: 0;
}


@media only screen and (max-width: 1090px)
{
    /* Sizes */
    .ks-mobile-width-100-p 
    {
        width: 100%;
    }

    /* Padding */
    .ks-mobile-padding-10
    {
        padding: 10px;
        box-sizing: border-box;
    }

    .ks-padding-lr-10p 
    {
        padding-left: 5%;
        padding-right: 5%;
    }

    .ks-mobile-padding-0
    {
        padding: 0;
        box-sizing: border-box;
    }

    

    /* Margin */
    .ks-mobile-margin-0 
    {
        margin: 0;
    }

    .ks-mobile-margin-10
    {
        margin: 10px;
        box-sizing: border-box;
    }

    .ks-mobile-margin-20
    {
        margin: 20px;
        box-sizing: border-box;
    }

    .ks-mobile-margin-25
    {
        margin: 25px;
        box-sizing: border-box;
    }

    .ks-mobile-margin-right-0 
    {
        margin-right: 0;
        box-sizing: border-box;
    }

    .ks-mobile-margin-right-10 
    {
        margin-right: 10px;
        box-sizing: border-box;
    }

    .ks-mobile-margin-left-0 
    {
        margin-left: 0;
    }

    .ks-mobile-margin-left-10 
    {
        margin-left: 10px;
    }

    .ks-mobile-margin-top-50 
    {
        margin-top: 50px;
    }

    .ks-mobile-margin-bottom-10 
    {
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .ks-mobile-margin-bottom-15 
    {
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .ks-mobile-margin-bottom-15-i 
    {
        margin-bottom: 15px !important;
        box-sizing: border-box;
    }

    .ks-mobile-margin-bottom-20 
    {
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .ks-mobile-margin-bottom-25 
    {
        margin-bottom: 25px;
        box-sizing: border-box;
    }    

    .ks-mobile-margin-bottom-35 
    {
        margin-bottom: 35px;
        box-sizing: border-box;
    }  
    
    .ks-mobile-margin-bottom-40
    {
        margin-bottom: 40px;
        box-sizing: border-box;
    }   

    .ks-mobile-margin-lr-10p 
    {
        margin-left: 10%;
        margin-right: 10%;
        box-sizing: border-box;
    }

    .ks-mobile-margin-lr-10p-i
    {
        margin-left: 10% !important;
        margin-right: 10% !important;
        box-sizing: border-box;
    }
} 

/*---- Flexbox ----*/
.ks-flex-container
{
    width: 100%;
    display: flex;
    box-sizing: border-box;
}

.ks-flex-container-vertical
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ks-flex-direction-column 
{
    flex-direction: column;
}

.ks-flex-align-items-center
{
    align-items: center;
}

.ks-flex-justify-content-space-around
{
    justify-content: space-around;
}

.ks-flex-justify-content-space-between
{
    justify-content: space-between;
}

.ks-flex-justify-content-left 
{
    justify-content: left;
}

.ks-flex-justify-content-center
{
    justify-content: center;
}

.ks-flex-justify-content-baseline 
{
    align-items: baseline;
}

.ks-flex-justify-content-flex-start
{
    justify-content: flex-start;
}

.ks-flex-justify-content-flex-end
{
    justify-content: flex-end;
}

.ks-flex-vertical-align 
{
    align-items: center;
}


.ks-flex-basis-50 
{
    flex-basis: 50%;
}

.ks-flex-wrap 
{
    flex-wrap: wrap;
}

.ks-flex-direction 
{
    flex-direction: column;
}

.ks-flex-direction-column
{
    flex-direction: column;
}

.ks-flex-direction-column-reverse 
{
    flex-direction: column-reverse;
}


/* Two Columns */
.ks-flex-columns-2 
{
  display: flex;
}

.ks-flex-columns-items
{
  flex-basis: 45%;
  width: 45%;
}

@media only screen and (max-width: 1090px)
{
    .ks-flex-container
    {
        
    }

    .ks-mobile-flex-direction-column 
    {
        flex-direction: column;
    }

    .ks-mobile-flex-direction-column-reverse 
    {
        flex-direction: column-reverse;
    }

    .ks-mobile-flex-direction-row 
    {
        flex-direction: row;
    }

    .ks-mobile-flex-justify-content-center
    {
        justify-content: center;
    }

    .ks-mobile-flex-container
    {
        flex-direction: row;
    }

    .ks-mobile-flex-columns-items
    {
        flex-basis: 45%;
    }
} 

/*---------------------------------------------------------------*/
/*--------------------------- Extras ----------------------------*/
/*---------------------------------------------------------------*/
.ks-clear-both  
{
    clear: both;
}

.ks-clear-initial  
{
    clear: initial;
}

.ks-clear-initial-i 
{
    clear: initial !important;
}

.ks-overflow-initial 
{
    overflow: initial;
}

.ks-overflow-initial-i
{
    overflow: initial !important;
}

.ks-overflow-auto
{
    overflow: auto;
}

.ks-overflow-hidden
{
    overflow: hidden;
}

.ks-box-sizing
{
    box-sizing: border-box;
}

.ks-border-none 
{
    border: none;
}

/* Lines */
.ks-separator-line 
{
    display: block;
    width: 100%;
    height: 2px;
    margin: 10px auto 10px auto;
    background-color: #1E1F22;
}

.ks-separator-line-white-thin
{
    background-color: #ffffff;
    height: 1px;
}

.ks-separator-line-white-thin-grey
{
    background-color: #E6E6E6;
    height: 1px;
}

.ks-separator-line-white-2px
{
    background-color: #ffffff;
    height: 2px
}

.ks-separator-line-transparent-20 
{
    display: block;
    width: 100%;
    height: 2px;
    margin: 10px auto 10px auto;
}

/* Back Bar */
.ks-back-bar 
{
    background-color: #383230;
    height: 50px;
    color: #ffffff;
}

.ks-back-bar-wrapper 
{
    position: relative;
    width: 80%;
    max-width: 1080px;
    margin: auto;
}

.ks-back-bar-wrapper a 
{
    font-weight: bold;
}

.ks-back-bar-wrapper::before
{
    content: "<";
    background-color: #FADD00;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    font-size: 25px;
    margin-right: 10px;
    line-height: 1.01;
}

/* Paginator */
.ks-paginator
{
    display: flex;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    width: 100%;
}

.ks-paginator a 
{
    margin-bottom: 5px;
}

.ks-paginator-prev-button,
.ks-paginator-next-button, 
.ks-paginator-page-number 
{
    width: 35px;
    height: 35px;
    border: thin solid #E8E9EC;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 0 2px;
    color: #808495;
}

.ks-paginator-prev-button:hover,
.ks-paginator-prev-button:focus,
.ks-paginator-next-button:hover,
.ks-paginator-next-button:focus,
.ks-paginator-page-number:hover,
.ks-paginator-page-number:focus
{
    border: thin solid #CD4F7F;
    color: #E6A7BF;
}

.ks-paginator-prev-button 
{

}

.ks-paginator-next-button
{

}

.ks-paginator .disable-button
{

}

.ks-paginator-pages 
{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
}

.ks-paginator-page-number 
{

}

.ks-paginator-page-current 
{
    border: thin solid #CD4F7F;
    color: #E6A7BF;
}

/*---- Paginator Mobile ----*/
@media only screen and (max-width: 1080px)  
{

}

/*---------------------------------------------------------------*/
/*--------------------------- Mobile ----------------------------*/
/*---------------------------------------------------------------*/

.ks-mobile-show
{
    display: none;
}

/*---- Paginator Mobile ----*/
@media only screen and (max-width: 1080px)  
{
    .ks-mobile-show
    {
        display: block;
    }

    .ks-mobile-hide
    {
        display: none !important;
    }
}

/*==================================================================================*/
/*==================================================================================*/
/*==================================================================================*/


/*---------------------------------------------------------------*/
/*------------------------ Cookies Popup -------------------------*/
/*---------------------------------------------------------------*/
.ks-popup-cookies 
{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    display: none;
}

.ks-popup-cookies .close-background
{
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
    position: absolute;
}

.ks-popup-cookies .wrapper
{
    width: 340px;
    height: 550px;
    background: #fff;
    z-index: 1;
    position: absolute;
    right: 25px;
    bottom: 25px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0px 1px 10px #222;
}

.ks-popup-cookies .padding
{
    padding: 25px;
}

.ks-popup-cookies h4
{
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.ks-popup-cookies p
{
    font-size: 14px;
    padding: 0 25px;
}

.ks-popup-cookies .decoration
{
    background: url(../images/popup/cookies_home_cookies_ilustration.png) no-repeat;
    width: 235px;
    height: 245px;
    background-size: cover;
    position: relative;
    background-position: center;
    margin: 30px auto;
}

.ks-popup-cookies .apply-button
{
    background: #DE3E70;
    display: flex;
    width: 150px;
    height: 45px;
    margin: 12px auto;
    color: #ffffff;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
}

.ks-popup-cookies a
{
    color: #43B998;
    text-decoration: underline;
}

/*- Mobile -*/
@media only screen and (max-width: 980px) 
{
    .ks-popup-cookies .wrapper
    {
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
}

/*==================================================================================*/
/*=============================== Social Networks ==================================*/
/*==================================================================================*/

/*---------------------------------------------------------------*/
/*--------------------------- Facebook --------------------------*/
/*---------------------------------------------------------------*/
.facebook-button-signin 
{
    background: #4760AF;
    padding: 10px;
    cursor: pointer;
    color: #ffffff;
    display: inline-block;
}

/*---------------------------------------------------------------*/
/*------------------------- Post Message ------------------------*/
/*---------------------------------------------------------------*/
.social-networks-post-message-container 
{
    display: block;
}

/*---------------------------------------------------------------*/
/*--------------------------- Helpers ---------------------------*/
/*---------------------------------------------------------------*/
.ks-remove-on-contact-form-callback {}
.ks-remove-on-newsletter-callback {}

/*---------------------------------------------------------------*/
/*--------------------------- Main Menu -------------------------*/
/*---------------------------------------------------------------*/

.ks-global-main-menu
{
	background: transparent;
	-webkit-transition: background-color .1s ease-out;
	-moz-transition: background-color .1s ease-out;
	-o-transition: background-color .1s ease-out;
	transition: background-color .1s ease-out;
}

.ks-global-main-menu .et_pb_menu 
{
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
}

.ks-global-main-menu-fixed 
{
	background-color: #0a0a0a;
	-webkit-transition: background-color .1s ease-out;
	-moz-transition: background-color .1s ease-out;
	-o-transition: background-color .1s ease-out;
	transition: background-color .1s ease-out;
}

.ks-global-main-menu-fixed .et_pb_menu 
{
    position: fixed;
}

.ks-global-main-menu .et_pb_row 
{
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.ks-global-main-menu-fixed .et_pb_row 
{
	padding: 0px 0 !important;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.ks-global-main-menu-align-center .et_pb_menu_inner_container
{   
    display: flex;
    justify-content: center;
}

.ks-global-main-menu-align-left .et_pb_menu_inner_container
{   
    display: flex;
    justify-content: flex-start;
}

.ks-global-main-menu-align-right .et_pb_menu_inner_container
{   
    display: flex;
    justify-content: flex-end;
}

.ks-global-main-menu-align-center .et_pb_menu__wrap,
.ks-global-main-menu-align-left .et_pb_menu__wrap,
.ks-global-main-menu-align-right .et_pb_menu__wrap
{
    flex: initial !important;
}

.ks-global-main-menu .et_pb_menu__logo img 
{
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.ks-global-main-menu-fixed .et_pb_menu__logo img 
{
	max-width: 50% !important;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.ks-global-main-menu .et_pb_menu ul li a 
{
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.ks-global-main-menu-fixed .et_pb_menu ul li a 
{
	font-size: 13px!important;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}


/*==================================================================================*/
/*================================ Themes Manager ==================================*/
/*==================================================================================*/

.ks-m-themes-manager-theme-preview 
{
    width: 100%;
    min-height: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(2048px);
    transition: all 1s ease 0s;
}

.ks-m-themes-manager-theme-preview-background
{
    background-color: #EAEAEA;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.98;
}

.ks-m-themes-manager-theme-preview-close
{
    width: auto;
    height: auto;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1;
    cursor: pointer;
}

.ks-m-themes-manager-theme-preview-close::before
{
    content: "x";
    width: 100%;
    height: 100%;
    color: #ffffff;
    position: absolute;
    top: 52%;
    left: 52%;
    transform: translate(-50%, -50%);
    display: none;
}

.ks-m-themes-manager-theme-preview-select-theme 
{
    width: 218px;
    text-align: center;
}

.ks-m-themes-manager-theme-preview-wrapper 
{
    width: 100%;
    max-width: 1024px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.ks-m-themes-manager-theme-preview-wrapper-header 
{

}

.ks-m-themes-manager-theme-preview-wrapper-content 
{
    display: flex;
    margin-bottom: 25px;
}

.ks-m-themes-manager-theme-preview-wrapper-content-columns 
{
    display: flex;
}

.ks-m-themes-manager-theme-preview-wrapper-content-column 
{
    display: flex;
    flex-direction: column;
    padding-right: 10px;
}

.ks-m-themes-manager-theme-preview-wrapper-content-image-preview 
{
    width: 450px;
    height: 480px;
    margin-right: 5px;
    margin-top: 15px;
    border-radius: 25px;
    overflow: auto;
    position: relative;
    top: 46%;
    transform: translateY(-50%);
}

.ks-m-themes-manager-theme-preview-wrapper-content-image-preview img 
{
    width: 100%;
}

.ks-m-themes-manager-theme-preview-wrapper-content-title 
{
    color: #403A60;
    font-size: 45px;
    font-weight: bold;
}

.ks-m-themes-manager-theme-preview-wrapper-content-description 
{
    color: #403A60;
    font-size: 18px;
    margin-bottom: 25px;
}

.ks-m-themes-manager-theme-preview-wrapper-content-colors 
{
    display: flex;
    border: 1px solid #403A60;
    width: 100%;
    height: 18px;
    margin-bottom: 25px;
}

.ks-m-themes-manager-theme-preview-wrapper-content-color
{
    background-color: #222;
    width: 33.33%;
    height: 100%;
}

.ks-m-themes-manager-theme-preview-wrapper-content-color-0
{
    background-color: #FFFFFF;
}

.ks-m-themes-manager-theme-preview-wrapper-content-color-1
{
    background-color: #FF9520;
}

.ks-m-themes-manager-theme-preview-wrapper-content-color-2
{
    background-color: #D24319;
}

.ks-m-themes-manager-theme-preview-wrapper-content-pages-preview 
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ks-m-themes-manager-theme-preview-wrapper-content-page-preview 
{
    flex-basis: 31%;
    height: 145px;
    margin-right: 3.5%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.ks-m-themes-manager-theme-preview-wrapper-content-page-preview:nth-child(3n)
{
    margin-right: 0;
}

.ks-m-themes-manager-theme-preview-wrapper-content-page-preview-image 
{
    background-color: #999;
    width: 100%;
    height: 100%;
    max-height: 112px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.ks-m-themes-manager-theme-preview-wrapper-content-page-preview-image:hover,
.ks-m-themes-manager-theme-preview-wrapper-content-page-preview-selected .ks-m-themes-manager-theme-preview-wrapper-content-page-preview-image 
{
    border: 2px solid #1BA59D;
} 

.ks-m-themes-manager-theme-preview-wrapper-content-page-preview-image img 
{
    width: 100%;
}

.ks-m-themes-manager-theme-preview-wrapper-content-page-preview-name 
{
    margin-left: 10px;
    margin-top: 5px;
}

.ks-m-themes-manager-theme-preview-wrapper-footer 
{

}

.ks-m-themes-manager-theme-preview-wrapper-content-mobile-show 
{
    display: none;
}


@media only screen and (max-width: 1024px)
{
    .ks-m-themes-manager-theme-preview-wrapper 
    {
        max-height: initial;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 15px;
        margin-top: 90px;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content 
    {
        width: 100%;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-mobile-show
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-mobile-hide
    {
        display: none !important;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-columns 
    {
        flex-direction: column-reverse;
        width: 100%;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-column 
    {
        width: 100%;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-image-preview 
    {
        width: 100%;
        height: 345px;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-pages-preview 
    {
        
    }
    
    .ks-m-themes-manager-theme-preview-wrapper-content-page-preview 
    {
        margin-right: 9.5%;
        flex-basis: 45%;
        align-items: center;
    }
    
    .ks-m-themes-manager-theme-preview-wrapper-content-page-preview:nth-child(2n)
    {
        margin-right: 0;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-page-preview:nth-child(3n) 
    {
        margin-right: 9.5%;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-page-preview:last-child
    {
        margin-right: 0;
    }

    .ks-m-themes-manager-theme-preview-wrapper-content-page-preview-name 
    {
        margin-left: 0;
    }
} 


/*==================================================================================*/
/*================================= Third-Party ====================================*/
/*==================================================================================*/

/*---------------------------------------------------------------*/
/*------------------------ Query Monitor ------------------------*/
/*---------------------------------------------------------------*/
#wpadminbar ul li#wp-admin-bar-query-monitor
{
    position: fixed;
    left: 0;
    background: #000;
    top: 0;
}
#wpadminbar li#wp-admin-bar-query-monitor.hover>.ab-sub-wrapper
{
    background: #000;
}


/*---------------------------------------------------------------*/
/*---------------------------- Divi -----------------------------*/
/*---------------------------------------------------------------*/
/*.system-loader-scene 
{
    display: none !important;
}*/


/* General */
.divi-show-in-editor-mode 
{
    display: none !important;
}

.et-bfb-distraction-free-mode .divi-show-in-editor-mode,
.et-fb-preview--desktop .divi-show-in-editor-mode,
.et-fb-root-ancestor .divi-show-in-editor-mode
{
    display: block !important;
}

/* Text - a */
.ks-divi-text-a-column-1 a 
{
    display: flex;
    align-items: center;
}


.ks-divi-text-a-column-1 img
{
    margin-right: 10px;
    width: 20%;
}

.ks-divi-text-a-column-2 .et_pb_text_inner
{
    display: flex;
    align-items: center;
}

.ks-divi-text-a-column-2 .et_pb_text_inner a
{
    margin-left: 20px;
    margin-bottom: 20px;
}

.ks-divi-text-a-column-2 .et_pb_text_inner a:first-child
{
    margin-left: 0;
}

@media only screen and (max-width: 980px)
{
    .ks-divi-text-a-column-1 a 
    {
        
    }

    .ks-divi-text-a-column-2 .et_pb_text_inner 
    {
        flex-direction: column;
    }

    .ks-divi-text-a-column-2 .et_pb_text_inner a
    {
        margin-left: 0;
        width: 70%;
    }
}


/* Header - Menu */

/*change Divi hamburger menu to X*/
.mobile_nav.opened .mobile_menu_bar:before 
{
    content: "\4d" !Important;
}

/*rotate the Divi Menu icon on click*/
.mobile_menu_bar:before 
{
	transition: all .4s ease;
	transform: rotate(0deg);
	display: block;
}

/*rotate the Divi Menu icon on click*/
.mobile_nav.opened .mobile_menu_bar::before 
{
	transition: all .4s ease;
	transform: rotate(90deg);
	display: block;
}

/* Footer - Menu */
.ks-divi-footer-menu .et_pb_menu__menu 
{
    display: block !important;
}

.ks-divi-footer-menu .et_mobile_nav_menu 
{
    display: none !important;
}

/* Footer - Menu - Mobile */
@media (max-width: 980px)
{
    .ks-divi-footer-menu .et_pb_menu__menu li
    {
        width: 100%;
    }

    .ks-divi-footer-menu .et_pb_menu__menu li a
    {
        margin: 0 auto;
    }
}

/*---- Columns ----*/

/*- Mobile -*/
@media only screen and (max-width: 980px) 
{

    .ks-divi-mobile-columns-one .et_pb_column 
    {
        width: 16% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
 
    .ks-divi-mobile-columns-two .et_pb_column 
    {
        width: 45% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .ks-divi-mobile-columns-three .et_pb_column 
    {
        width: 33.33% !important;
    }
    
    .ks-divi-mobile-columns-four .et_pb_column 
    {
        width: 25% !important;
    }
 
}

/*---------------------------------------------------------------*/
/*------------------------- Datepicker --------------------------*/
/*---------------------------------------------------------------*/
.ui-datepicker
{
    min-width: 400px;
    padding: 8px;
    box-sizing: border-box;
    display: none;
}

.ui-datepicker .ui-datepicker-header 
{
    background: none;
    border: none;
    height: 50px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next
{
    background: url(../../global/images/shared/shared_btn_arrow_calendar.png) no-repeat;
    width: 35px;
    height: 35px;
    border: solid thin #E8E9EC;
    box-shadow: none;
    top: 2px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev 
{
    left: 2px;
    border: none;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next
{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    right: 2px;
    border: none;
}

.ui-datepicker .ui-datepicker-prev span, 
.ui-datepicker .ui-datepicker-next span 
{
    display: none !important;
}

.ui-datepicker .ui-datepicker-title 
{
    text-transform: capitalize;
    background: none;
    color: #403A60;
    font-size: 15px;
    padding: 5px 0 0 0;
}

.ui-datepicker table 
{
    margin: 0;
}

.ui-datepicker .ui-datepicker-calendar thead 
{
    background: #E9E9F0;
    height: 48px;
}

.ui-datepicker .ui-datepicker-calendar thead tr
{
    height: 48px;
}

.ui-datepicker .ui-datepicker-calendar thead span 
{
    color: #A3A6B4;
    font-size: 13px;
}

.ui-datepicker .ui-datepicker-calendar tbody a,
.ui-datepicker .ui-state-default
{
    width: 45px;
    height: 45px;
    background: none;
    text-align: center;
    vertical-align: middle;
    line-height: 45px;
    border: solid thin #E8E9EC
}   

.ui-datepicker .ui-datepicker-calendar tbody a:hover, 
.ui-datepicker .ui-datepicker-calendar tbody a.ui-state-active
{
    background: #403A60;
    color: #ffffff;
}



.post_meta_extras #mytheme_datepicker
{
    width: 130px;
    height: 30px;
    text-align: center;
    border: solid thin #403A60;
}

.post_meta_extras #mytheme_datepicker:focus 
{
    border: 1px solid #CC507E;
}


/*---------------------------------------------------------------*/
/*------------------- Colorpicker - Spectrum --------------------*/
/*---------------------------------------------------------------*/
.sp-original-input-container 
{
    margin: 0 !important;
}

.sp-colorize-container 
{
    width: 48px !important;
    margin-right: 10px;
}

.sp-colorize-container .sp-colorize 
{
    height: 46px;
    border: thin solid #666666;
    border-radius: 50px;
}

input.spectrum.with-add-on 
{
    padding-left: 12px !important;
    margin-bottom: 0;
}

.ks-global-inputs-systems-design-colorpicker-container .ks-flex-container
{
    align-items: center;
}

.ks-global-inputs-systems-design-colorpicker-container .ks-flex-container .ks-global-inputs-system-sub-title
{
    margin-bottom: 0;
    margin-left: 10px;
}

.ks-global-inputs-systems-design-colorpicker-container .sp-replacer 
{

}


/*---------------------------------------------------------------*/
/*------------ Woocommerce - Themify Producs Filter -------------*/
/*---------------------------------------------------------------*/
.wpf-slider-tooltip 
{
    left: 28px !important;
}

/*---------------------------------------------------------------*/
/*--------------------------- Slick -----------------------------*/
/*---------------------------------------------------------------*/

.ks-global-slick-thumbnail-wrapper
{

}

.ks-global-slick-thumbnail-item 
{

}

.ks-global-slick-thumbnail-item-wrapper 
{
    margin-right: 25px;
    margin-left: 25px;
    padding: 0;
}

.ks-global-slick-thumbnail-arrow 
{
    position: absolute;
    z-index: 1;
    background-image: url(../images/third-party/slick/shared_left_arrow.png);
    width: 32px;
    height: 32px;
    border: none;
    -webkit-appearance: initial;
    padding: 5px;
    cursor: pointer;
    background-size: contain;
    top: 45%;
    transform: translateY(-50%);
}

.ks-global-slick-thumbnail-arrow-prev
{
    left: -20px;
}

.ks-global-slick-thumbnail-arrow-next
{
    background-image: url(../images/third-party/slick/shared_right_arrow.png);
    left: auto;
    right: -20px;
}

/*---- Mobile ----*/
@media only screen and (max-width: 1280px)  
{
    .ks-global-slick-thumbnail-wrapper
    {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .ks-global-slick-thumbnail-arrow-prev
    {
        position: absolute;
        left: 0px;
        margin-top: 0;
        margin-right: 0;
        width: 20px;
        height: 20px;
    }

    .ks-global-slick-thumbnail-arrow-next
    {
        position: absolute;
        right: 0;
        margin-top: 0;
        margin-left: 0;
        width: 20px;
        height: 20px;
    }
}

/*---------------------------------------------------------------*/
/*------------------------- Google AUTH -------------------------*/
/*---------------------------------------------------------------*/

.ks-google-auth-sign-in-container 
{
    width: 100%;
    max-width: 420px;
    margin: 10px auto 10px auto;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ks-google-auth-sign-in-container iframe 
{
    max-width: 420px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/*==================================================================================*/
/*==================================================================================*/
/*==================================================================================*/

/*==================================================================================*/
/*================================ Inputs System ===================================*/
/*==================================================================================*/

/*---- Inputs ----*/
.ks-global-inputs-system-text,
.ks-global-inputs-system-text[type=text], 
.ks-global-inputs-system-text[type=tel],
.ks-global-inputs-system-text[type=email],
.ks-global-inputs-system-text-area 
{
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
}

.ks-global-inputs-system-number,
.ks-global-inputs-system-number[type=number] 
{
    width: 100%;
    max-width: 175px;
    margin-bottom: 0;
}

.ks-global-inputs-system-button,
input.ks-global-inputs-system-button,
button.ks-global-inputs-system-button  
{
    display: inline-block;
    text-align: center;
}

.ks-global-inputs-system-button-remove,
.wp-core-ui .ks-global-inputs-system-button-remove
{
    margin-bottom: 25px !important;
    padding: 5px 15px;
}

.ks-global-inputs-system-submit,
button.ks-global-inputs-system-submit 
{
    margin-bottom: 25px !important;
    display: inline-block;
    padding: 5px 15px;
}

.ks-global-inputs-system-main-container 
{
    background-color: transparent;
    margin-top: 15px;
    box-sizing: border-box;
    margin-right: 20px;
    overflow-x: hidden;
}

.ks-global-inputs-system-container 
{
    margin: 10px 0 35px;
}

.ks-global-inputs-system-separator 
{
    margin: 0 0 30px;
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    justify-content: flex-end;
    text-align: initial;
    position: relative;
}

.ks-global-inputs-system-separator:last-child 
{
    margin-right: 0 !important;
}

.ks-global-inputs-system-separator-with-lines 
{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 12px 0 !important;
}

.ks-global-inputs-system-separator-with-lines::before,
.ks-global-inputs-system-separator-with-lines::after 
{
    content: "";
    width: 45%;
    height: 1px;
    display: inline-block;
    background-color: #DEDEDE;
    position: relative;
    top: -3px;
}

.ks-global-inputs-system-main-title 
{
    display: block;
    background: transparent;
    color: #2A1B4A;
    padding: 15px 25px 15px 0;
    margin-bottom: 15px;
    text-align: left;
    font-size: 25px;
    font-weight: bold;
}

.ks-global-inputs-system-main-sub-title 
{
    display: block;
    color: #666666;
    margin-top: 5px;
    margin-bottom: 25px;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
    max-width: 532px;
}

.ks-global-inputs-system-title,
.ks-global-inputs-system-title-2 
{
    display: block;
    color: #2A1B4A;
    padding: 10px 25px 25px 0;
    margin-bottom: 15px;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
} 

.ks-global-inputs-system-title-2 
{
    font-size: 18px;
    padding-bottom: 10px;
    margin-top: 0;
}

.ks-global-inputs-system-sub-title 
{
    font-weight: 600;
    margin: 0 0 20px 0;
    font-size: 14px;
    display: block;
    color: #333333;
    cursor: auto;
}

.ks-global-inputs-system-sub-title-2 
{
    font-weight: normal;
    margin: 0 0 30px 0;
    font-size: 14px;
    display: block;
    color: #333333;
    cursor: auto;
    max-width: 425px;
}

.ks-global-inputs-system-description 
{
    font-weight: normal;
    margin: 0 10px 20px 14px;
    font-size: 12px;
    display: block;
    color: #403A60;
    cursor: auto;
    max-width: 475px;
}

.ks-global-inputs-system-text, 
.ks-global-inputs-system-text[type=text], 
.ks-global-inputs-system-text[type=tel], 
.ks-global-inputs-system-text[type=email]
{
    font-weight: normal;
    margin: 0 0 20px 0;
    font-size: 13px;
    display: block;
    color: #000;
}

.ks-global-inputs-system-separator .ks-global-inputs-system-text, 
.ks-global-inputs-system-separator .ks-global-inputs-system-text[type=text], 
.ks-global-inputs-system-separator .ks-global-inputs-system-text[type=tel], 
.ks-global-inputs-system-separator .ks-global-inputs-system-text[type=email] 
{
    margin-bottom: 0;
}

.ks-global-inputs-system-text-color-red 
{
    color: red; 
}
.ks-global-inputs-system-text-color-orange 
{
    color: orange; 
}
.ks-global-inputs-system-text-color-green 
{
    color: #1BA59D; 
}
.ks-global-inputs-system-text-color-green-i 
{
    color: #1BA59D !important; 
}

.ks-global-inputs-system-text-underline 
{
    text-decoration: underline !important; 
}

/* Text Editor */
.ks-global-inputs-system-editor-container 
{
    max-width: 960px;
}

/* Tabs */
.ks-global-inputs-system-menu-tabs 
{
    display: flex;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ks-global-inputs-system-menu-tab 
{
    display: none;
    min-height: 400px;
    /*position: absolute;
    width: 100%;*/
}

.ks-global-inputs-system-menu-tab:first-child 
{
    display: block;
}

.ks-global-inputs-system-menu-tabs-button 
{
    padding: 10px 25px;
    font-weight: bold;
    background-color: transparent;
    color: #999999;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    border-bottom: thin solid #999999;
}

.ks-global-inputs-system-menu-tabs-button:hover, 
.ks-global-inputs-system-menu-tabs-button:focus,
.ks-global-inputs-system-menu-tabs-button-active 
{
    background-color: transparent;
    color: #403A60;
    border-bottom-width: 2px;
    border-bottom-color: #403A60;
    font-weight: 600;
}

.ks-global-inputs-system-menu-tabs-button-active 
{

}

/* Tabs - icon style */

.ks-global-inputs-system-menu-tabs-icon-style 
{
    flex-wrap: wrap;
}

.ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button
{
    border: 2px solid #E8E8E8;
    border-radius: 20px;
    margin-right: 15px;
    margin-bottom: 10px;
    width: 224px;
    height: 224px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff;
}

.ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button span
{
    display: none;
    position: absolute;
    left: -1px;
    bottom: -1px;
    width: 101%;
    height: 32px;
    background-color: #1BA59D;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 0px 0px 12px 12px;
}

.ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button-active span
{
    display: flex;
}

.ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button:last-child 
{
    margin-right: 0;
}

.ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button:hover,
.ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button-active
{
    border-color: #1BA59D;
}

.ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button img
{
    max-width: 125px;
}


/* Inputs Columns */
.ks-global-inputs-system-columns 
{
    display: flex;
}

.ks-global-inputs-system-columns .ks-global-inputs-system-separator 
{
    margin-right: 10px;
}

.ks-global-inputs-system-columns .ks-global-inputs-system-separator:last-child 
{
    margin-right: 0;
}

.ks-global-inputs-system-columns-two 
{

}

.ks-global-inputs-system-columns-three 
{

}

/*---- Mobile ----*/
@media only screen and (max-width: 1024px) 
{ 
    .ks-global-inputs-system-main-container 
    {
        margin-right: 0;
    }


    .ks-global-inputs-system-menu-tabs 
    {
        flex-direction: column;
        text-align: center;
    }

    /* Inputs Columns */
    .ks-global-inputs-system-columns 
    {
        flex-direction: column;
    }

    .ks-global-inputs-system-columns .ks-global-inputs-system-separator 
    {
        margin-right: 0;
    }

    /* Tabs - icon style */
    .ks-global-inputs-system-menu-tabs-icon-style 
    {
        flex-direction: row;
        justify-content: center;
    }

    .ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button
    {
        width: 112px;
        height: 112px;
    }

    .ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button:last-child 
    {
        margin-right: 15px;
    }

    .ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button img
    {
        width: 100%;
    }
    
    .ks-global-inputs-system-menu-tabs-icon-style .ks-global-inputs-system-menu-tabs-button span
    {
        height: 18px;
    }


}

/* Tab Container */
.ks-global-inputs-system-menu-tabs-container 
{
    position: relative;
}

.ks-global-inputs-system-menu-tabs-data-wrapper 
{
    background-color: #ffffff;
    padding: 20px 20px;
    margin-bottom: 50px;
    border-radius: 15px;
    box-sizing: border-box;
}

/*---- Mobile ----*/
@media only screen and (max-width: 1024px)  
{
    .ks-global-inputs-system-menu-tabs-data-wrapper 
    {
        padding: 10px;
        width: 100%;
    }
}

/* Items List Filters */
.ks-global-inputs-system-items-list-filters
{
    display: flex;
    flex-direction: column;
}

.ks-global-inputs-system-items-list-filter-category
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ks-global-inputs-system-items-list-filter-category label 
{
    margin-bottom: 10px;
}

#ks-global-inputs-system-items-list-filter-category-selectbox
{
    display: flex;
}


/*---- Text Area ----*/
.ks-global-inputs-system-text-area 
{

}

.ks-global-inputs-system-text-area:disabled
{
    color: #000;
}


/*---- Checkbox ----*/
.ks-global-inputs-system-checkboxs-group 
{

}

.ks-global-inputs-system-checkbox 
{
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.ks-global-inputs-system-checkbox input
{
    
}

.ks-global-inputs-system-checkbox p
{
    margin-top: 0;
    margin-bottom: 3px;
}

/*---- Text Editor ----*/
.wp-editor-wrap .wp-media-buttons 
{
    float: right;
    margin-top: 10px;
    margin-bottom: 15px;
}


.wp-media-buttons .insert-media 
{
    margin: 0 !important;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 5px 15px !important;
}

.wp-media-buttons .add_media span.wp-media-buttons-icon 
{
    background: 0 0;
    display: none;
}

.wp-core-ui button#ks-global-inputs-system-image-gallery-manage-gallery 
{
    margin-right: 15px;
}

.ks-global-inputs-system-separator .ks-global-inputs-system-image-gallery-buttons 
{
    margin-top: 10px;
}

/*---- Phone ----*/
.ks-global-inputs-system-phone-inputs 
{

}

.ks-global-inputs-system-phone-inputs-with-country-code 
{

}

.ks-global-inputs-system-phone-inputs-with-country-code input[type=tel]
{
    width: calc(100% - 105px);
}

.ks-global-inputs-system-phone-country-code 
{
    width: 100px;
    height: 50px;
    margin-right: 5px;
    position: relative;
    -webkit-appearance: none;
    background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;
    background-size: 16px 16px;
}

.ks-global-inputs-system-phone-country-code option
{
    
}

/*---- Mobile ----*/
@media only screen and (max-width: 1024px)  
{
    .ks-global-inputs-system-phone-inputs-with-country-code input[type=tel]
    {
        
    }
}

/*---- Images ----*/
.ks-global-inputs-system-image-uploaded-image
{
    width: 100%;
    max-width: 425px;
    min-width: 250px;
    min-height: 250px;
    background: #F0F2F8;
    position: relative;
    display: block;
    box-sizing: content-box;
} 

.ks-global-inputs-system-image-has-uploaded-image 
{
    width: auto;
    min-height: 42px;
}

.ks-global-inputs-system-image-uploaded-image:before 
{
    content: "";
    background-image: url(../../global/images/shared/shared_icon_upload.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 89px;
    height: 57px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
}

.ks-global-inputs-system-image-has-uploaded-image:before 
{
    display: none;
} 

.ks-global-inputs-system-image-uploaded-image img 
{
    width: 100%;
    height: auto;
    position: relative;
    box-sizing: border-box;
}

.ks-global-inputs-system-image-uploaded-image-fit 
{
    display: flex;
    min-width: auto;
}

.ks-global-inputs-system-image-uploaded-image-fit img 
{
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding: 0;
    min-width: 128px;
}

.ks-global-inputs-system-image-featured-image-upload 
{
    display: none;
}

.ks-global-inputs-system-image-upload-button, 
#post-body .input_file_button  
{
    width: 150px;
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    top: auto;
    cursor: pointer;
}

.ks-global-inputs-system-image-upload-button:hover 
{
    
}

.ks-global-inputs-system-image-upload-button-hide
{
    display: none !important;
}

.ks-global-inputs-system-image-remove-image-button, 
.ks-global-inputs-system-image-gallery-item-remove
{
    width: 25px;
    height: 24px;
    min-height: auto;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    cursor: pointer;
    text-align: center;
    line-height: 21px;
}

.ks-global-inputs-system-image-remove-image-button:hover, 
.ks-global-inputs-system-image-gallery-item-remove:hover
{
    
}

.ks-global-inputs-system-image-remove-image-button 
{
    display: none !important;
}

.ks-global-inputs-system-image-has-uploaded-image .ks-global-inputs-system-image-remove-image-button 
{
    display: inline-flex !important;
    min-height: auto;
    padding: 5px 5px 4px 5px !important;
    line-height: 0.8 !important;
}

/*#post-body .mytheme_input_field
{
    height: 59px;
    background: #E9E9F0;
    display: block;
    box-shadow: none;
    border: none;
    transition: none;
    color: #E61788;
    width: 100%;
    box-sizing: border-box;
    padding: 0 32px;
    font-size: 13px;
}*/

#post-body .post_meta_extras label
{
    display:block; 
    margin-bottom: 10px;
}

/*---- Image Gallery ----*/
#postbox-container-2 .ks-global-inputs-system-image-gallery-container
{

}

#post-body .ks-global-inputs-system-image-gallery-container .ks-global-inputs-system-image-gallery-item
{
    position: relative;
    width: 300px;
    height: 150px;
    display: inline-block;
    margin: 0 10px 10px 0;
}

#post-body .ks-global-inputs-system-image-gallery-container .ks-global-inputs-system-image-gallery-item-remove
{
    display: block;
    font-size: 16px !important;
}

#post-body .ks-global-inputs-system-image-gallery-container .ks-global-inputs-system-image-gallery-item img
{
    width: 100%;
    height: 100%;
    display: block;
}

#postbox-container-2 .ks-global-inputs-system-image-gallery-container #ks-global-inputs-system-image-gallery-manage-gallery, #postbox-container-2 .ks-global-inputs-system-image-gallery-container #ks-global-inputs-system-image-gallery-empty-gallery 
{

}

#post-body .ks-global-inputs-system-image-gallery-container #ks-global-inputs-system-image-gallery-manage-gallery
{
    margin-right: 30px;
}

#post-body .ks-global-inputs-system-image-gallery-container #ks-global-inputs-system-image-gallery-manage-gallery:before
{
    background-image: url(../../global/images/posts/posts_icon_media.png);
    width: 16px;
    height: 16px;
}

/*---- Parts ----*/
#postbox-container-2 .left_part
{
    display: block;
    /*width: 45%;
    margin-right:30px;
    vertical-align: top;*/
}



/*---- Mobile ----*/
@media only screen and (max-width: 1024px)  
{
    #poststuff 
    {
        min-width: 0;
    }

    #wpbody-content #poststuff #post-body 
    {
        margin: 0;
    }

    #wpbody-content #post-body.columns-2 #postbox-container-1 
    {
        margin-right: 0;
        width: 100%;
    }

    #wpbody #post-body-content, 
    .edit-form-section 
    {
        min-width: 0;
        padding: 10px;
    }


    /* Tittle */
    #wpbody #post-body-content #titlediv #edit-slug-box #edit-slug-buttons 
    {
        bottom: -15px;
    }
}

/*---- Data Group ----*/
.ks-global-inputs-system-data-group
{
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    max-width: 350px;
    align-items: center;
    padding: 15px;
    margin-bottom: 30px;
    margin-right: 10px;
    border: 2px solid #403A60;
    border-radius: 5px;
    box-sizing: border-box;
}

.ks-global-inputs-system-data-group:last-child
{
    margin-right: 0;
}

/* List Items */
.ks-global-inputs-system-tab-list-items-container 
{
    margin-bottom: 20px;
}

.ks-global-inputs-system-tab-list-items-container-empty 
{
    display: flex;
    justify-content: center;
    font-size: 30px;
    padding: 25px;
    line-height: 1.25;
}

.ks-global-inputs-system-tab-list-item 
{
    margin-bottom: 10px;
}

.ks-global-inputs-system-tab-list-item-button-show 
{
    width: 100%;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    background-color: #F9F9F9;
    color: #333333;
    border-bottom: thin solid #666;
    padding: 20px;
    cursor: pointer;
    border-radius: 50px;
}

.ks-global-inputs-system-tab-list-item-button-show:hover,
.ks-global-inputs-system-tab-list-item-button-show-active 
{
    background-color: #E3EFEF;
}

.ks-global-inputs-system-tab-list-item-button-show-active 
{
    background-color: #259591 !important;
}

.ks-global-inputs-system-tab-list-item-button-show-name 
{
    position: relative;
    color: #333333;
}

.ks-global-inputs-system-tab-list-item-button-show-active .ks-global-inputs-system-tab-list-item-button-show-name 
{
    color: #FFFFFF;
}

.ks-global-inputs-system-tab-list-item-button-show-name-new 
{
    position: absolute;
    right: -45px;
    top: -12px;
    color: yellow;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.2px;
    text-shadow: 0px 0px 5px red;
}

.ks-global-inputs-system-tab-list-item-button-show-name-state-icon 
{
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    position: absolute;
    top: 3px;
    right: -20px;
    border: thin solid #B5B6B5;
}

.ks-global-inputs-system-tab-list-item-button-show-name-state-icon-new-entry
{
    background-color: rgb(255, 255, 0);
}

.ks-global-inputs-system-tab-list-item-button-show-name-state-icon-in-preparation
{
    background-color: orange;
}

.ks-global-inputs-system-tab-list-item-button-show-name-state-icon-on-the-way
{
    background-color: rgb(0, 247, 255);
}

.ks-global-inputs-system-tab-list-item-button-show-name-state-icon-delivered
{
    background-color: rgb(8, 248, 48);
}

.ks-global-inputs-system-tab-list-item-button-show-created-time 
{

}

.ks-global-inputs-system-tab-list-item-button-show-active .ks-global-inputs-system-tab-list-item-button-show-created-time
{
    color: #FFFFFF;
}

.ks-global-inputs-system-tab-list-item-detail-separator 
{
    margin-bottom: 10px;
}

.ks-global-inputs-system-tab-list-item-detail 
{
    display: none;
    background-color: transparent;
    padding: 20px;
    box-sizing: border-box;
}

.ks-global-inputs-system-tab-list-item-detail-title 
{
    font-size: calc(1.0em + 0.35vw);
    color: #403A60;
    margin-bottom: 10px;
    font-weight: bold;
}


.ks-global-inputs-system-tab-list-item-detail-field 
{
    font-size: 15px;
    color: #403A60;
    margin-bottom: 10px;
}

.ks-global-inputs-system-tab-list-item-detail-field a
{
    color: #1BA59D;
    text-decoration: none;
    margin-left: 5px;
    font-weight: 600;
}

.ks-global-inputs-system-tab-list-item-detail-button,
.ks-global-inputs-system-tab-list-item-detail-button-accept, 
.ks-global-inputs-system-tab-list-item-detail-button-remove 
{
    display: inline-flex;
    width: auto;
    margin: 15px 15px 15px 0;
}

.ks-global-inputs-system-tab-list-item-detail-button:last-child, 
.ks-global-inputs-system-tab-list-item-detail-button-accept:last-child, 
.ks-global-inputs-system-tab-list-item-detail-button-remove:last-child 
{
    margin-right: 0;
}

.ks-global-inputs-system-tab-list-item-detail-button:hover,
.ks-global-inputs-system-tab-list-item-detail-button-accept:hover,
.ks-global-inputs-system-tab-list-item-detail-button-remove:hover 
{
    background-color: rgb(255, 39, 147);
}

/*---- Mobile ----*/
@media only screen and (max-width: 1024px)  
{
    .ks-global-inputs-system-tab-list-item-detail 
    {
        padding: 20px 10px;
    }

    .ks-global-inputs-system-tab-list-item-detail-button,
    .ks-global-inputs-system-tab-list-item-detail-button-accept, 
    .ks-global-inputs-system-tab-list-item-detail-button-remove 
    {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/*---- Accordion ----*/
.ks-global-inputs-system-accordion-container 
{

}
.ks-global-inputs-system-accordion-container .ui-accordion-header
{
    margin-bottom: 10px !important;
    border-radius: 50px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.ks-global-inputs-system-accordion-container .ui-accordion-header:hover 
{
    background-color: #E3EFEF;
}

.ks-global-inputs-system-accordion-container .ui-accordion-header-active 
{
    background-color: #259591 !important;
}

.ks-global-inputs-system-accordion-container .ks-global-inputs-system-accordion-item 
{
    margin-top: -10px !important;
    border: none;
}

.ks-global-inputs-system-accordion-container .ks-global-inputs-system-accordion-item-hided
{
    display: none;
}

/*---- Mobile ----*/
@media only screen and (max-width: 1024px)  
{
    .ks-global-inputs-system-menu-tab 
    {

        min-height: 640px;
    }


    /*---- Data Group ----*/
    .ks-global-inputs-system-data-group 
    {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }

    /*---- Accordion ----*/
    .ks-global-inputs-system-accordion-item 
    {
        padding: 1em 0 !important;
    }
}

/*---- Color picker ----*/

.sp-container .sp-palette-container 
{
    display: none !important;
}

/*---- Stats ----*/
.ks-global-inputs-system-stats-container 
{
    margin-bottom: 50px;
}

.ks-global-inputs-system-stats-wrapper
{
    display: flex;
    justify-content: space-evenly;
    justify-items: center;
}

.ks-global-inputs-system-stats-interactions 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    text-align: center;
    margin: 0 2%;
}

.ks-global-inputs-system-stats-interactions-total 
{

}

.ks-global-inputs-system-stats-interactions-success 
{

}

.ks-global-inputs-system-stats-interactions-average 
{

}

.ks-global-inputs-system-stats-value 
{
    color: #259591;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 10px;
    line-height: 1;
}

.ks-global-inputs-system-stats-interactions p 
{
    color: #333333;
    font-size: 14px;
    font-weight: 600;
}

/*---- Mobile ----*/
@media only screen and (max-width: 1024px)  
{
    .ks-global-inputs-system-stats-wrapper 
    {
        flex-direction: column;
    }

    .ks-global-inputs-system-stats-interactions 
    {

    }
}

/* Items List Search */

.ks-global-inputs-system-items-list-search 
{
    display: flex;
    justify-content: center;
    text-align: center;
}

.ks-global-inputs-system-items-list-search-form 
{

}

.ks-global-inputs-system-items-list-search-form .ks-global-inputs-system-separator 
{
    margin: 0;
} 


/*---- Ks List Table ----*/
.ks-global-inputs-system-list-table 
{
    background-color: #ffffff;
    max-width: 980px;
    width: 100%;
}

/* Header */
.ks-global-inputs-system-list-table thead,
.ks-global-inputs-system-list-table tfoot  
{
    position: relative;
}

.ks-global-inputs-system-list-table thead::before,
.ks-global-inputs-system-list-table tfoot::before  
{
    content: "";
    background-color: #F4F4F4;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.ks-global-inputs-system-list-table thead tr,
.ks-global-inputs-system-list-table tfoot tr
{
    position: relative;
    height: 40px;
}

.ks-global-inputs-system-list-table thead td,
.ks-global-inputs-system-list-table tfoot td
{

}

.ks-global-inputs-system-list-table thead th,
.ks-global-inputs-system-list-table tfoot th
{
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
}

.ks-global-inputs-system-list-table thead th:first-child,
.ks-global-inputs-system-list-table tfoot th:first-child
{
    padding-left: 30px;
}

.ks-global-inputs-system-list-table thead th:last-child,
.ks-global-inputs-system-list-table tfoot th:last-child
{
    padding-right: 30px;
}

/* Body */
.ks-global-inputs-system-list-table tbody 
{
    width: 100%;
}

.ks-global-inputs-system-list-table tbody tr
{
    border-bottom: 1px solid #CFD0D1;
}
.ks-global-inputs-system-list-table tbody tr:last-child
{
    border-bottom: none;
}

.ks-global-inputs-system-list-table tbody th
{

}

.ks-global-inputs-system-list-table tbody td
{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    min-width: 120px;
}

.ks-global-inputs-system-list-table tbody td:first-child
{
    padding-left: 30px;
}

.ks-global-inputs-system-list-table tbody td:last-child
{
    padding-right: 30px;
}

.ks-global-inputs-system-list-table tbody td .ks-global-inputs-system-button-submit,
.ks-global-inputs-system-list-table tbody td .ks-global-inputs-system-button-remove,
.ks-global-inputs-system-list-table tbody td .ks-global-inputs-system-button 
{
    width: 110px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 15px !important;
}

.ks-global-inputs-system-list-table tbody td .ks-global-inputs-system-button-submit:last-child,
.ks-global-inputs-system-list-table tbody td .ks-global-inputs-system-button-remove:last-child,
.ks-global-inputs-system-list-table tbody td .ks-global-inputs-system-button:last-child 
{
    margin-bottom: 0 !important;
}

.ks-global-inputs-system-list-table tbody td .ks-global-inputs-system-button 
{

}

/* Footer */
.ks-global-inputs-system-list-table tfoot 
{
    
}


/*---- Mobile ----*/
@media only screen and (max-width: 1024px)  
{
    .ks-global-inputs-system-list-table thead, 
    .ks-global-inputs-system-list-table tfoot,
    .ks-global-inputs-system-list-table thead th, 
    .ks-global-inputs-system-list-table tfoot th,
    .ks-global-inputs-system-list-table tbody td 
    {
        display: none;
    }

    .ks-global-inputs-system-list-table tbody 
    {
        display: flex;
        flex-direction: column;
    }

    .ks-global-inputs-system-list-table tbody tr 
    {
        border: 1px solid #CFD0D1;
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        padding: 15px;
        border-radius: 15px;
        justify-content: center;
    }

    .ks-global-inputs-system-list-table-mobile-visible 
    {
        display: flex !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: center !important;
        font-size: 16px !important;
        align-items: center;
        justify-content: center;
    }
}

/*==== Data Structure Input ====*/
.ks-global-inputs-system-data-structure 
{

}

.ks-global-inputs-system-data-structure-button-add 
{

}

.ks-global-inputs-system-data-structure-list 
{
    
}

.ks-global-inputs-system-data-structure-item 
{
    margin-top: 25px;
    margin-left: 15px;
}

.ks-global-inputs-system-data-structure-input-list 
{
    
}

.ks-global-inputs-system-data-structure-input-container 
{

}

.ks-global-inputs-system-data-structure-item input.ks-global-inputs-system-text[type=text],
.ks-global-inputs-system-data-structure-item input.ks-global-inputs-system-number[type=number]
{
    margin-bottom: 15px;
    width: 100%;
    max-width: 250px;
    display: block;
}

.ks-global-inputs-system-data-structure-item input:last-child
{
    margin-bottom: 0;
}

.ks-global-inputs-system-data-structure-input-container textarea 
{
    margin-bottom: 15px;
}


/*==================================================================================*/
/*================================ KUAD Builder ====================================*/
/*==================================================================================*/

/* Sign In / Sign Up */
.ks-builder-m-auth-signup-sc,
.ks-builder-m-auth-signin-sc 
{

}

.ks-builder-m-auth-signup-sc-wrapper,
.ks-builder-m-auth-signin-sc-wrapper
{
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.ks-builder-m-auth-signup-sc-wrapper #registerform,
.ks-builder-m-auth-signin-sc-wrapper #registerform
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ks-builder-m-auth-signup-sc-submit,
.ks-builder-m-auth-signin-sc-submit 
{
    display: flex;
    justify-content: center;
}
 
.ks-builder-m-auth-signup-sc .ks-global-inputs-system-submit,
.ks-builder-m-auth-signin-sc .ks-global-inputs-system-submit
{
    padding: 5px 55px !important;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.ks-builder-m-auth-signup-sc .ks-global-inputs-system-separator,
.ks-builder-m-auth-signin-sc .ks-global-inputs-system-separator
{
    margin: 0 0 15px;
}

.ks-builder-m-auth-signup-sc .ks-global-inputs-system-inputs input[type=email],
.ks-builder-m-auth-signup-sc .ks-global-inputs-system-inputs input[type=password],
.ks-builder-m-auth-signup-sc .ks-global-inputs-system-inputs select,
.ks-builder-m-auth-signup-sc .ks-global-inputs-system-inputs input[type=tel],

.ks-builder-m-auth-signin-sc .ks-global-inputs-system-inputs input[type=email],
.ks-builder-m-auth-signin-sc .ks-global-inputs-system-inputs input[type=email],
.ks-builder-m-auth-signin-sc .ks-global-inputs-system-inputs select,
.ks-builder-m-auth-signin-sc .ks-global-inputs-system-inputs input[type=tel] 
{
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif !important;
    height: 38px!important;
}

/*==================================================================================*/
/*==================================================================================*/
/*==================================================================================*/

#toplevel_page_ks-m-payments-gateways-admin
{
    /*display: none;*/
}

/*---------------------------------------------------------------*/
/*---------------------------- Themify --------------------------*/
/*---------------------------------------------------------------*/

.wpf_form .wpf_items_wrapper .wpf_column_columns li 
{
    text-align: left;
}

.wpf_form .wpf_items_wrapper .wpf_column_vertical li 
{
    text-align: left;
}

.wpf_layout_horizontal .wpf_items_group 
{
    width: 360px !important;
} 

/*---------------------------------------------------------------*/
/*-------------------------- Site Preview -----------------------*/
/*---------------------------------------------------------------*/

/* Site Preview */
.ks-global-site-preview
{
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
}

.ks-global-site-preview-iframe-loader 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(2.5);
}

.ks-global-site-preview-iframe-options 
{
    padding: 10px;
}

.ks-global-site-preview-iframe-options .ks-global-inputs-system-button
{
    margin-right: 10px;
    margin-bottom: 10px;
}

.ks-global-site-preview-iframe-options .ks-global-inputs-system-button:last-child
{
    margin-right: 0;
}

.ks-global-site-preview-button-refresh 
{
    
}

.ks-global-site-preview-button-view-pc 
{

}

.ks-global-site-preview-button-view-tablet 
{

}

.ks-global-site-preview-button-view-mobile 
{

}

.ks-global-site-preview-button 
{
    margin-bottom: 25px;margin-bottom: 25px;
    display: none;
}

.ks-global-site-preview-iframe-container 
{
    width: 200%;
    height: 1080px;
    padding: 0;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    transition: all .5s ease;
}

.ks-global-site-preview-iframe-container-scaler  
{
    width: 100%;
    height: auto;
    position: relative;
    top: -25%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    transform: scale(0.5);

    transition: all .5s ease;
}

.ks-global-site-preview-iframe
{
    width: 1920px;
    height: 1080px;
    border: 0px;
    position: relative;
}

.ks-global-site-preview-iframe 
{
    zoom: 1;
    -moz-transform: scale(1);
    -moz-transform-origin: 0 0;
    -o-transform: scale(1);
    -o-transform-origin: 0 0;
    -webkit-transform: scale(1);
    -webkit-transform-origin: 0 0;
}

.ks-global-site-preview-iframe-mode-tablet 
{
    width: 125%;
}

.ks-global-site-preview-iframe-mode-mobile 
{
    width: 75%;
}

.ks-global-site-preview-iframe-mode-tablet .ks-global-site-preview-iframe-container-scaler
{
    top: -10%;
    transform: scale(0.80);
}

.ks-global-site-preview-iframe-mode-mobile .ks-global-site-preview-iframe-container-scaler
{
    top: 0%;
    transform: scale(1.0);
}

.ks-global-site-preview-iframe-mode-tablet .ks-global-site-preview-iframe
{

}

.ks-global-site-preview-iframe-mode-mobile .ks-global-site-preview-iframe
{

}

/* Site Preview */
.ks-m-themes-manager-site-customizer-admin-wrapper 
{
    display: flex;
}

.ks-m-themes-manager-site-customizer-admin-wrapper .ks-global-inputs-system-menu-tabs-container
{
    width: 49%;
    margin-right: 1%;
    z-index: 1;
}

.ks-m-themes-manager-site-customizer-admin-site-preview 
{
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    position: relative;
    top: 0;
    left: 0;
}

.ks-m-themes-manager-site-customizer-admin-site-preview .ks-global-loader-animations-spinner-lds-ring div 
{
    border: 8px solid #1BA59D;
    border-color: #1BA59D transparent transparent transparent;
}

/*---- Mobile ----*/
@media only screen and (max-width: 1280px)  
{
    .ks-m-themes-manager-site-customizer-admin-wrapper
    {
        flex-direction: column;
    }

    .ks-m-themes-manager-site-customizer-admin-wrapper .ks-global-inputs-system-menu-tabs-container 
    {
        width: 100%;
        margin-right: 0;
    }

    .ks-m-themes-manager-site-customizer-admin-site-preview 
    {
        width: 100%;
    }
}


/*-----------------------------------------------------------------------------*/
/*------------------------------|| DataTables ||-------------------------------*/
/*-----------------------------------------------------------------------------*/

.ks-global-dataTable-container 
{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    display: none;
}

.ks-global-dataTable
{
    
}

.ks-global-dataTable-container-background 
{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.9;
    left: 0;
    top: 0;
}

.ks-global-dataTable-container-render-wrapper
{
    position: fixed;
    width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #212529;
    border-radius: 5px;
    padding: 15px;
    box-sizing: border-box;
}

.ks-global-dataTable-container-render-close
{
    position: absolute;
    top: -36px;
    right: 0;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 10px 5px 10px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ks-global-dataTable-container-render 
{
    color: #fff;
    font-size: 12px;
}

.ks-global-dataTable-container 
{

}

/*---- Mobile ----*/
@media only screen and (max-width: 1280px)  
{

    .ks-global-dataTable-container 
    {
    
    }

    .ks-global-dataTable
    {
        
    }

}


/*-----------------------------------------------------------------------------*/
/*-----------------------------|| Progress Bar ||------------------------------*/
/*-----------------------------------------------------------------------------*/

.ks-global-progress-bar 
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 250px;
    text-align: center;
    margin: 10px auto;
    padding: 0 15px;
}

.ks-global-progress-bar-container 
{
    display: flex;
    width: 100%;
    height: 30px;
    position: relative;
    background: #555;
    border-radius: 25px;
    padding: 3px;
    box-shadow: inset 0 -1px 1px rgb
}

.ks-global-progress-bar-slider-wrapper 
{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 0;
    box-sizing: border-box;
}

.ks-global-progress-bar-slider 
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #B55C80;
    z-index: 1;
    background-size: 50px 50px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 1s ease;
    color: #fff !important;
    padding: 2px 0 0 0;
    margin: 2px;
    font-size: 12px;
    font-weight: bold;
}