/*
 Theme Name:   PRIORISE
 Theme URI:    https://priorise.com
 Description:  Thème PRIORISE
 Author:       STUDIO WBM
 Author URI:   https://priorise.com
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light
 Text Domain:  priorise_theme
*/


/****************************
         HELPER
****************************/

:root {
    --themeFontFamily: 'Lexend', sans-serif;
    --themeBackgroundColor: #FFFFFF;
    --themeFontColor: #191919;
    --themePurple: #6427C9;
    --themeBluePurple: #6335F1;
    --themeMarinePurple: #370583;
    --themeMarine: #000053;
    --light-background: #E5DEFE;;
    --themeGrey: #B4B4B4;
    --black: #20102B;
    --white: #FFFFFF;
    --gold: #fbbc04;
    --range: 0%;

     /* PADDING */
    --padding-container: calc((100vw - 1440px + 30px) / 2);
}

[hidden] {
    display: none !important;
}

abbr, abbr[title] {
    border: 0 !important;
}

html {
    background: transparent !important;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

html, body {
    font-family: var(--themeFontFamily), sans-serif !important;
    margin: 0;
    color: var(--themeFontColor);
    font-size: 15px;
    background: radial-gradient(113.96% 113.96% at 25.33% 79.81%, rgba(151, 71, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), radial-gradient(81.30% 65.68% at 68.49% 29.74%, rgba(106, 50, 251, 0.24) 0%, rgba(255, 255, 255, 0.00) 100%), #FFF;
}

body.overflow-hidden {
    overflow-y: hidden;
    height: 100vh;
}
body.modal-active{
    overflow: hidden;
}
button[disabled] {
    cursor: not-allowed;
}
a{
    color: var(--themeFontColor);
    text-decoration: none;
}
a, button, select, input, textarea {
    outline: 0;
}
button{
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.wp-block-button{
    -webkit-transition: background-color 300ms ease;
    -moz-transition: background-color 300ms ease;
    -ms-transition: background-color 300ms ease;
    -o-transition: background-color 300ms ease;
    transition: background-color 300ms ease;
}
a:hover,
a:not([href]):not([tabindex]):hover {
    text-decoration: none;
    color: inherit;
}
.row-inputs {
    display: flex;
    gap: 10px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea{
    display: flex;
    /* padding: 10px 16px!important; */
    padding: 10px 16px;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    border-radius: 10px!important;
    border: 1px solid rgba(0, 0, 83, 0.15);
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 0!important;
    margin-top: 0!important;
    min-width: 250px;
    width: 100%;
}
textarea{
    max-height: 150px;
}

select{
    display: flex;
    padding: 10px 16px;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    border-radius: 10px!important;
    border: 1px solid rgba(0, 0, 83, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -webkit-appearance: none;
    margin-bottom: 0!important;
    margin-top: 0!important;
    width: 100%;
}
form label{
    color: var(--black);
    font-family: 'Lexend';
    font-size: 13px!important;
    text-align: left;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
}
.pac-container{
    z-index: 999999999;
}
.hidden-mobile{
    display: none;
}
.d-none{
    display: none;
}
.d-block{
    display: block;
}
.d-flex{
    display: flex;
}
.w-100{
    width: 100%!important;
}
.h-100{
    height: 100%!important;
}
.opacity-40{
    opacity: 0.4;
}
.opacity-50{
    opacity: 0.5;
}
.opacity-60{
    opacity: 0.6;
}
.no-transform{
    transform: none!important;
}
.scale-0{
    transform: scale(0)!important;
}
.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
/**************
     GAP
***************/
.gap-1, .gap-10{
    gap: 10px;
}
.gap-15{
    gap: 15px;
}
.gap-20{
    gap: 20px;
}
.gap-3, .gap-30{
    gap: 30px;
}
.gap-40{
    gap: 40px;
}
.gap-50{
    gap: 50px;
}
.grid-gap-0-10{
    grid-gap: 0px 10px;
}

/**************
     FONTS
***************/

.lexend{
    font-family: 'Lexend', sans-serif;
}
.uppercase{
    text-transform: uppercase;
}
/**************
     ICONS
***************/

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 48
}
.material-symbols-outlined.filled{
    font-variation-settings:
    'FILL' 1,
    'wght' 300,
    'GRAD' 0,
    'opsz' 48
}

/**************
     BUTTONS
***************/
button a{
    color: inherit;
    display: flex;
    gap: 13px;
    align-items: center;
    white-space: nowrap;
}
button span.material-symbols-outlined{
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
button:hover span.material-symbols-outlined{
    font-variation-settings: 
    'FILL' 1,
     'wght' 300,
      'GRAD' 0,
       'opsz' 48;
}
.btn-xs{
    padding: 11px 22px;
    font-size: 15px;
}
.btn-small{
    padding: 12px 25px;
    font-size: 15px;
}
.btn-small.full {
    width: 100%;
}
.btn-big{
    padding: 20px 32px;
    font-size: 20px;
}
.btn-small:hover{
    padding: 12px 27px;
}
.btn-big:hover{
    padding: 20px 34px;
}
.btn-filled-marine-purple, .wp-block-button.is-style-fill{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--themeMarinePurple);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    color: #FFFFFF;
    line-height: normal;
    border: none;
    width: fit-content;
}
.wp-block-button.is-style-outline a, .wp-block-button.is-style-fill a{
    padding: 12px 25px;
    font-size: 15px;
    border: none;
    background: none;
}
.wp-block-button.is-style-outline:hover{
    background: var(--themeMarine);
    background-color: rgb(99, 53, 241, 0.2);
    border: solid 1px var(--themeBluePurple);
    color: var(--themeMarinePurple);
}
.btn-filled-marine{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--themeMarine);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    color: #FFFFFF;
    line-height: normal;
    border: none;
    width: 100%;
}
.btn-filled-white{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #FFFFFF;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    color: var(--themeFontColor);
    line-height: normal;
    border: none;
    width: fit-content;
}
.btn-unfilled-white{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    border: solid 1px rgba(255, 255, 255, 0.40);
    color: #FFFFFF;
    line-height: normal;
    width: fit-content;
}
.btn-filled-gradient{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: radial-gradient(165.55% 107.94% at 79.62% 36.96%, #6335F1 0%, #370583 100%);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    color: #FFFFFF;
    line-height: normal;
    border: none;
    width: 100%;
}
.btn-unfilled-gradient, .wp-block-button.is-style-outline{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: solid 1px var(--themeBluePurple);
    background-color: transparent;
    color: var(--themeFontColor);
    width: fit-content;
}
.btn-unfilled-gradient:hover{
    background-color: rgb(99, 53, 241, 0.2);
    border: solid 1px var(--themeBluePurple);
    color: var(--themeMarinePurple);
}
.btn-unfilled-alert{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: solid 1px #ff4f55;
    background-color: transparent;
    color: #ff4f55;
    width: 100%;
}
.btn-unfilled-alert:hover{
    background-color: rgba(255, 79, 85, 0.161);
    border: solid 1px #ff4f55;
    color: #ff4f55;
}
.btn-xs img{
    width: 18px;
    object-fit: contain;
}
.btn-small img{
    width: 24px;
    object-fit: contain;
}
.btn-big img{
    width: 32px;
    object-fit: contain;
}


/* Add this class to adapt BUTTON in Mobile */



/**************
     TAGS
***************/

.tag-xs{
    border-radius: 5px;
    font-size: 13px!important;
    padding: 5px 10px;
    line-height: 1;
}
.tag-small{
    border-radius: 5px;
    font-size: 13px!important;
    padding: 5px 10px;
    line-height: 1;
}
.tag-medium{
    border-radius: 5px;
    font-size: 14px;
    padding: 8px 15px;
    line-height: 1;
}
.tag-large{
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 18px;
    line-height: 1;
}
.tag-purple{
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    background-color: var(--themePurple);
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
}
.tag-unfilled-white{
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    background: rgba(255,255,255,0.2);
    text-align: center;
    border: solid 1px rgba(255, 255, 255, 0.40);
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
}
.tag-border-purple{
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    background-color: transparent;
    border: solid 1px var(--themeBluePurple);
    color: var(--themeMarinePurple);
    font-style: normal;
    font-weight: 400;
}
.tag-border-alert{
    display: inline-flex;
    width: fit-content;
    align-items: flex-start;
    background-color: transparent;
    border: solid 1px #ff4f55;
    color: #ff4f55;
    font-style: normal;
    font-weight: 400;
}
.tag-border-info{
    display: inline-flex;
    width: fit-content;
    align-items: flex-start;
    background-color: transparent;
    border: solid 1px var(--themePurple);
    color: var(--themePurple);
    font-style: normal;
    font-weight: 400;
}


 /* Employee */
 
/**************
   ANIMATION
***************/

.animation-fade-up {
	animation: animation-fade-up ease-out 0.3s;
	animation-iteration-count: 1;
	transform-origin: 50% 50%;
	animation-fill-mode: forwards; /*when the spec is finished*/
	-webkit-animation: animation-fade-up ease-out 0.3s;
	-webkit-animation-iteration-count: 1;
	-webkit-transform-origin: 50% 50%;
	-webkit-animation-fill-mode: forwards; /*Chrome 16+, Safari 4+*/
	-moz-animation: animation-fade-up ease-out 0.3s;
	-moz-animation-iteration-count: 1;
	-moz-transform-origin: 50% 50%;
	-moz-animation-fill-mode: forwards; /*FF 5+*/
	-o-animation: animation-fade-up ease-out 0.3s;
	-o-animation-iteration-count: 1;
	-o-transform-origin: 50% 50%;
	-o-animation-fill-mode: forwards; /*Not implemented yet*/
	-ms-animation: animation-fade-up ease-out 0.3s;
	-ms-animation-iteration-count: 1;
	-ms-transform-origin: 50% 50%;
	-ms-animation-fill-mode: forwards; /*IE 10+*/
}

@keyframes animation-fade-up {
	0% {
		opacity:0;
		transform:  translate(0, 100px);
	}
	100% {
		opacity:1;
		transform:  translate(0, 0);
	}
}
@-moz-keyframes animation-fade-up {
	0% {
		opacity:0;
		transform:  translate(0, 100px);
	}
	100% {
		opacity:1;
		transform:  translate(0, 0);
	}
}
@-webkit-keyframes animation-fade-up {
	0% {
		opacity:0;
		transform:  translate(0, 100px);
	}
	100% {
		opacity:1;
		transform:  translate(0, 0);
	}
}
@-o-keyframes animation-fade-up {
	0% {
		opacity:0;
		transform:  translate(0, 100px);
	}
	100% {
		opacity:1;
		transform:  translate(0, 0);
	}
}
@-ms-keyframes animation-fade-up {
	0% {
		opacity:0;
		transform:  translate(0, 100px);
	}
	100% {
		opacity:1;
		transform:  translate(0, 0);
	}
}

@keyframes arrowBounce {
    from {
        transform: translate3d(0, 0, 0) rotate(-90deg);
    }
    to {
        transform: translate3d(0, 10px, 0) rotate(-90deg);
    }
}

@keyframes arrowBounceHorizontal {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(15px, 0, 0);
    }
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

.anim-300-linear, .anim-300-linear a {
    -webkit-transition: all 300ms ease-out !important;
    -moz-transition: all 300ms ease-out !important;
    -ms-transition: all 300ms ease-out !important;
    -o-transition: all 300ms ease-out !important;
    transition: all 300ms ease-out !important;
}

.anim-300, .anim-300 a {
    -webkit-transition: all 300ms ease !important;
    -moz-transition: all 300ms ease !important;
    -ms-transition: all 300ms ease !important;
    -o-transition: all 300ms ease !important;
    transition: all 300ms ease !important;
}

.anim-500, .anim-500 a {
    -webkit-transition: all 500ms ease !important;
    -moz-transition: all 500ms ease !important;
    -ms-transition: all 500ms ease !important;
    -o-transition: all 500ms ease !important;
    transition: all 500ms ease !important;
}

.anim-800, .anim-800 a {
    -webkit-transition: all 800ms ease !important;
    -moz-transition: all 800ms ease !important;
    -ms-transition: all 800ms ease !important;
    -o-transition: all 800ms ease !important;
    transition: all 800ms ease !important;
}

.anim-1200, .anim-1200 a {
    -webkit-transition: all 1200ms ease !important;
    -moz-transition: all 1200ms ease !important;
    -ms-transition: all 1200ms ease !important;
    -o-transition: all 1200ms ease !important;
    transition: all 1200ms ease !important;
}

.anim-800-linear {
    -webkit-transition: all 800ms linear !important;
    -moz-transition: all 800ms linear !important;
    -ms-transition: all 800ms linear !important;
    -o-transition: all 800ms linear !important;
    transition: all 800ms linear !important;
}


/**************
  NAVIGATION
***************/

.ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

/*******************
    OVERFLOW
*******************/

.overflow-hidden {
    overflow: hidden !important;
}


/*******************
    LETTER-SPACING
*******************/

.ls-1 {
    letter-spacing: 1px !important;
}

.ls-2 {
    letter-spacing: 2px !important;
}

.ls-3 {
    letter-spacing: 3px !important;
}

.ls-4 {
    letter-spacing: 4px !important;
}


/*******************
    FONT-SIZE
*******************/




/*******************
    FONT-WEIGHT
*******************/

.fw-900 {
    font-weight: 900 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-100 {
    font-weight: 100 !important;
}

/*******************
     WIDTH
*******************/

/*******************
     Z-INDEX
*******************/

.z-0 {
    z-index: 0;
}

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

.z-9 {
    z-index: 9;
}

.z-99 {
    z-index: 99;
}

.z-999 {
    z-index: 999;
}

.z-9999 {
    z-index: 9999;
}

.z-99999 {
    z-index: 99999;
}


/*******************
     POINTER
*******************/

.pointer-none {
    pointer-events: none;
}


/*******************
     ROTATE
*******************/

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-90 {
    transform: rotate(90deg);
}





/***********************
       CURSOR
***********************/

.cursor-pointer {
    cursor: pointer;
}


/***********************
       RESPONSIVE
***********************/

@media only screen and (max-width: 1600px) {
    :root {
        --padding-container: calc((100vw - 1200px + 30px) / 2);
    }
}
@media only screen and (max-width: 1280px) {

    :root {
        /* PADDING */
        --padding-container: calc((100vw - 1200px + 50px) / 2);
    }
    input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea{
        min-width: 100%;
    }
    .btn-xs{
        font-size: 14px;
        padding: 10px 20px;
    }
}
@media only screen and (max-width: 1200px) {
    :root {
        /* PADDING */
        --padding-container: calc((100vw - 960px + 60px) / 2);
    }
    .btn-small{
        padding: 12px 20px;
        font-size: 14px;
        line-height: 130%;
    }
    .btn-small .material-symbols-outlined{
        font-size: 20px;
    }
    .btn-small:hover{
        padding: 12px 22px;
        line-height: 130%;
    }
    span.tag-medium, .tag-medium{ 
        font-size: 13px!important;
        padding: 8px 12px;
    }
    p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px) {
    :root {
        /* PADDING */
        --padding-container: calc((100vw - 720px + 30px) / 2);
    }
}
@media only screen and (max-width: 767px) {
    :root {
        --padding-container: calc((100vw - 540px + 30px) / 2);
    }
}
@media only screen and (max-width: 575px) {
    .cky-btn-revisit-wrapper.cky-revisit-bottom-left,  .cky-btn-revisit-wrapper {
        display: none;
    }
    :root {
        /* PADDING */
        --padding-container: 15px;
    }
    .gap-5-mobile{
        gap: 5px!important;
    }
    .gap-0-mobile{
        gap: 0px!important;
    }
}
@media only screen and (max-width: 420px) {
    
    input[type="text"], input[type="password"], input[type="email"], input[type="tel"]{
        font-size: 14px;
    }
    .btn-small {
        padding: 10px 18px;
        font-size: 13px;
    }
    .btn-small .material-symbols-outlined{
        font-size: 18px;
    }
    .btn-small:hover{
        padding: 10px 18px;
        line-height: 130%;
    }
    span.tag-medium, span.tag-small, .tag-medium, .tag-small {
        padding: 5px 10px;
        font-size: 12px!important;
    }
}

