@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Scrollbar styling for all elements */
::-webkit-scrollbar {
    width: 8px; /* Slim scrollbar */
    height: 8px; /* Slim horizontal scrollbar (optional) */
}

::-webkit-scrollbar-track {
    background: #f4f4f4; /* Subtle light gray background */
    border-radius: 10px; /* Rounded track for elegance */
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1; /* Soft gray for the thumb */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid #f4f4f4; /* Adds space around the thumb for a floating effect */
}

/* Thumb on hover (subtle color change for interaction) */
::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8; /* Slightly darker gray */
}

html, body{
    margin: 0px;
    padding: 0px;
    background-color: #EFF2F5;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}
ul{
    padding: 0px;
    margin: 0px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: unset;
    cursor: pointer;
}
h1, h2, h3, h4, h5, p{
    margin: 0px;
}
input, button, textarea, select{
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}
.center{
    width: 90%;
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
.white{
    background-color: #FFFFFF;
}

/* HEADER */
header{
    width: 100%;
    height: auto;
    float: left;
    margin: 13px 0 10px;
}
.header__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 22px 10px;
    box-sizing: border-box;
    border-radius: 10px;
}
.header__item{
    width: fit-content;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.header__item-logo{
	width: fit-content;
	height: auto;
	float: left;
}
.header__item-logo img{
	width: 200px;
	height: auto;
	float: left;
	object-fit: contain;
	object-position: left;
}
@media screen and (max-width: 768px) {
    .header__item-logo img {
        width: 120px; /* Smaller width for mobile */
    }
    .editor__item-vacancies span {
        font-size: 12px;
    }
    .editor__item-vacancies {
        margin-bottom: 10px;
    }

}
.header__item ul{
    width: fit-content;
    height: auto;
    float: right;
}
.header__item ul > li{
    width: fit-content;
    height: auto;
    float: left;
    margin: 0 0 0 35px;
    position: relative;
}
.header__item ul > li > a{
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}
.header__item ul > li > a:hover{
    text-decoration: underline;
}
.header__item ul > li:last-child a{
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border-radius: 5px;
    padding: 10px 15px;
}
.header__item_lang-drop{
    position: relative;
    padding: 0 20px 0 0;
}
.header__item_lang-drop::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url("/static/images/career/icon/drop.svg");
    right: 0;
    top: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.header__item_lang-drop.active::before{
    transform: rotate(180deg);
}
.header__item_lang{
    width: fit-content;
    height: auto;
    position: absolute;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 0 10px 14px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    left: 50%;
    top: 26px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    display: none;
    z-index: 10005;
}
.header__item_lang a{
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    margin: 15px 0 0 0;
}
.header__item-profile{
    width: fit-content;
    height: auto;
    float: right;
    margin: 0 0 0 35px;
    position: relative;
}
.header__item-profile div{
    width: fit-content;
    height: auto;
    padding: 0 30px 0 0;
    float: left;
    cursor: pointer;
}
.header__item-profile div::before{
    content: "";
    position: absolute;
    right: 0;
    top: 13px;
    width: 20px;
    height: 12px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.header__item-profile div.active::before{
    transform: rotate(180deg);
}
.header__item-profile img{
    width: 41px;
    height: 41px;
    float: right;
    border-radius: 100px;
    object-fit: cover;
    object-position: center;
    outline: none;
}
.header__item-profile a{
    width: fit-content;
    height: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #DB1A32;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    padding: 10px 32px;
    position: absolute;
    right: 0;
    top: 50px;
    white-space: nowrap;
    display: none;
}
.header__item-bar{
    display: none;
}
/* HEADER */

/* SIGN IN BANNER */
.signInBanner{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}
.signInBanner__row{
    margin-bottom: 1em;
    width: 100%;
    height: auto;
    float: left;
    border: 3px solid #1369CF;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 70px 0;
}
.signInBanner__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.signInBanner__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 700;
    font-size: 34px;
    line-height: 135%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 1);
    padding: 0 0 69px;
    position: relative;
}
.signInBanner__item-title b{
    color: #1369CF;
}
.signInBanner__item-title::after{
    content: "";
    position: absolute;
    width: 50px;
    height: 28.52px;
    background-image: url("/static/images/career/icon/up.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 50%;
    bottom: 0%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.signInBanner__item-signUp{
    width: fit-content;
    height: auto;
    font-weight: 600;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #1369CF;
    border-radius: 5px;
    padding: 15px 40px;
    margin: 40px auto 0;
}
/* SIGN IN BANNER */

/* FOOTER */
footer{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}
.footer__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 20px;
    background: #1369CF;
    border-radius: 10px 10px 0px 0px;
    box-sizing: border-box;
}
.footer__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.footer__item:nth-child(2){
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.footer__box{
    width: fit-content;
    height: auto;
}
.footer__box-logo{
    width: fit-content;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 34px;
    line-height: 135%;
    color: #FFFFFF;
}
.footer__box-logo img {
    width: 200px;
    height: auto;
    float: left;
    object-fit: contain;
    object-position: left;
}
.footer__box__networks{
    width: fit-content;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    padding: 50px 0;
}
.footer__box__networks a{
    width: 50px;
    height: 50px;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    margin: 0 0 0 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: inherit;
}
.footer__box__networks a.linkedin{
    background-image: url("/static/images/career/icon/linkedin.svg");
}
.footer__box__networks a.vk{
    background-image: url("https://top-talent.ru/static/images/icon/vk.svg");
}
.footer__box__networks a.twitter{
    background-image: url("/static/images/career/icon/twitter.svg");    
}
.footer__box__networks a.facebook{
    background-image: url("/static/images/career/icon/facebook.svg");   
}
.footer__box__networks a.instagram{
    background-image: url("/static/images/career/icon/instagram.svg");    
}
.footer__box__networks a.youtube{
    background-image: url("/static/images/career/icon/youtube.svg");    
}
.footer__block{
    width: 30%;
    height: auto;
    padding: 13px 0 15px;
}
.footer__block-copyright{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #FFFFFF;
}
.footer__block-link{
    width: fit-content;
    height: auto;
    font-size: 18px;
    line-height: 135%;
    color: #FFFFFF;
    margin: 0 auto;
    display: block;
}
/* FOOTER */

/* SECURITY */
.security{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0;
}
.security__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 50px 30px 100px;
    box-sizing: border-box;
    background: #E2E8EE;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.security-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: left;
}
.security-description{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    color: #333333;
    text-align: left;
    margin: 15px 0 0 0;
}
.security__item{
    width: 50%;
    height: auto;
    margin: 40px 0 0 0;
}
.security__item-description{
    width: 90%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #333333;
    text-align: left;
    padding: 0 0 0 55px;
    box-sizing: border-box;
    position: relative;
}
.security__item:nth-child(4) .security__item-description{
    width: 80%;
}
.security__item-description::before{
    content: "";
    position: absolute;
    height: 45.5px;
    width: 35px;
    left: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.security__item:nth-child(3) .security__item-description::before{
    background-image: url("/static/images/career/icon/security.svg");
}
.security__item:nth-child(2) .security__item-description::before{
    background-image: url("/static/images/career/icon/security.svg");
}
.security__item:nth-child(4) .security__item-description::before{
    background-image: url("/static/images/career/icon/data-protection.svg");
}
/* SECURITY */

/* COMMENTS */
.comments{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0;
}
.comments__row{
    width: 100%;
    height: auto;
    float: left;
    border: 3px solid #1369CF;
    border-radius: 10px;
    padding: 50px 0;
    box-sizing: border-box;
    text-align: center;
}
.comments__item{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 30px;
    box-sizing: border-box;
}
.comments__item__carousel{
    width: 100%;
    height: auto;
    float: left;
}
.comments__item__carousel .owl-dots{
    display: none;
}
.comments__item__carousel__section{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.comments__item__carousel__section-description{
    width: 80%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 22px;
    line-height: 135%;
    text-align: center;
    color: #000000;
}
.comments__item__carousel__section__auther{
    width: 100%;
    max-width: 500px;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 11px 0 0 0;
}
.comments__item__carousel__section__box:nth-child(1){
    width: 100px;
    height: auto;
}
.comments__item__carousel__section__box:nth-child(2){
    width: calc(100% - 130px);
    height: auto;
}
.comments__item__carousel__section__box-user{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    object-fit: cover;
    object-position: center;
}
.comments__item__carousel__section__box-logo{
    width: 150px !important;
    height: 51.06px;
    float: left;
    object-fit: contain;
    object-position: center;
}
.comments__item__carousel__section__box-name{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    line-height: 135%;
    text-align: left;
    color: #000000;
}
.owl-nav{
    width: 100%;
    height: auto;
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    justify-content: space-between;
    align-content: center;
    align-items: center;
    z-index: 10005;
}
.nav-button{
    height: 40px;
    width: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/static/images/career/icon/owl-nav.svg");
    color: #fff0;
}
.owl-nav button:nth-child(2){
    transform: rotate(180deg);   
}
/* COMMENTS */

/* MAIN */
.main{
    width: 100%;
    height: auto;
    float: left;
    padding: 53px 0 0 0;
}
.main-title{
    width: 100%;
    height: auto;
    font-weight: 700;
    font-size: 74px;
    line-height: 94px;
    text-transform: uppercase;
    color: #1369CF;
    text-align: left;
	text-align: justify;
	text-align-last: justify;
}
.main__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    margin: 20px 0 0 0;
}
.main__item{
    width: 52%;
    height: auto;
}
.main__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.main__item-button{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border-radius: 5px;
    margin: 40px 0 0 0;
    padding: 15px 0 16px;
    text-align: center;
}
.main-poster{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
/* MAIN */

/* FEATURES */
.features{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}
.features__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.features__item{
    width: calc(50% - 5px);
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.features__item:nth-child(1){
    padding: 50px 30px;
    box-sizing: border-box;
    background: #1369CF;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
}
.features__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
}
.features__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #FFFFFF;
    text-align: left;
    margin: 20px 0 0 0;
}
.features__item-button {
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #333333;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 140px 0 0 0;
    padding: 15px 0 16px;
    text-align: center;
}
.features__box{
    width: calc(50% - 5px);
    box-sizing: border-box;
    background: #1369CF;
    border-radius: 10px;
    padding: 30px;
    margin: 0 0 10px 0;
}
.features__box:nth-child(3), .features__box:nth-child(4){
    margin: 0;
}
.features__box-icon{
    width: 80px;
    height: 80px;
    float: left;
    object-fit: contain;
    object-position: center;
}
/* FEATURES */

/* PREMIUM */
.premium{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.premium__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 30px 66px;
    box-sizing: border-box;
    background: #E2E8EE;
    border-radius: 10px;
}
.premium-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: left;
}
.premium__item{
    width: calc(50% - 37px);
    height: auto;
    margin: 40px 0 0 0;
}
.premium__item-poster{
    width: 100%;
    height: 320px;
    float: left;
    border-radius: 5px;
}
.premium__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #333333;
    text-align: left;
    margin: 20px 0 0 0;
}
.premium__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #333333;
    text-align: left;
    margin: 20px 0 0 0;
}
/* PREMIUM */

/* PLANS */
.plans{
    width: 100%;
    height: auto;
    float: left;
}
.plans__price{
    padding: 25px 0 4px;
}
.plans-title{
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #1369CF;
    padding: 2em 1em 2em 1em;
    text-align: center;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 10px;
    position: relative;
}
.plans-close{
    width: 28px;
    height: 28px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEwIDguNTg2IDIuOTI5IDEuNTE1IDEuNTE1IDIuOTI5IDguNTg2IDEwbC03LjA3MSA3LjA3MSAxLjQxNCAxLjQxNEwxMCAxMS40MTRsNy4wNzEgNy4wNzEgMS40MTQtMS40MTRMMTEuNDE0IDEwbDcuMDcxLTcuMDcxLTEuNDE0LTEuNDE0TDEwIDguNTg2eiIgZmlsbD0iIzEzNjljZiIgY2xhc3M9ImZpbGwtMDAwMDAwIj48L3BhdGg+PC9zdmc+");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.plans__row{
    width: 100%;
    height: auto;
    float: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically if needed */
    overflow: hidden;
}
.plans__item{
    width: 33%;
    background: #FFFFFF;
    padding: 130px 60px 60px;
    box-sizing: border-box;
    margin: 10px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    position: relative;
    border: 7px solid #EFF2F5;
    border-radius: 30px;
    border-left: 0;
}

.plans__item:nth-child(2)::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 26px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 180px;
    height: 56px;
    background-image: url("/static/images/career/vectory/most-popular.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.plans__item-duration{
    width: 100%;
    height: auto;
    min-height: 56px;
    float: left;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    color: #333333;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.plans__item-duration span{
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
}
.plans__item-price{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #333333;
    text-align: center;
    margin: 30px 0 0 0;
}
.plans__item-price span{
    font-weight: 300;
    font-size: 90px;
    line-height: 106px;
    color: #333333;
}
.plans__item-button{
    width: fit-content;
    height: auto;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #1369CF;
    padding: 15px 50px;
    margin: 50px auto 0;
    border: 2px solid #1369CF;
    border-radius: 5px;
}
.plans__item ul{
    width: 100%;
    height: auto;
    float: left;
    margin: 30px 0 0 0;
}
.plans__item ul > li{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #333333;
    text-align: left;
    margin: 15px 0 0 0;
    padding: 0 0 0 33px;
    box-sizing: border-box;
    position: relative;
}
.plans__item ul > li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    height: 12px;
    width: 17px;
    background-image: url("/static/images/career/icon/check.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.plans__item:nth-child(2){
    border-left: 0px;
    background: #1369CF;
    z-index: 3;
}
.plans__item:nth-child(2){
    z-index: 2;
}
.plans__item:nth-child(3){
    border-right: 0px;
    z-index: 1;
}
.plans__item:nth-child(2)::after{
    display: none;
}
.plans__item:nth-child(2) .plans__item-duration{
    color: #FFFFFF;
}
.plans__item:nth-child(2) .plans__item-price{
    color: #FFFFFF;
}
.plans__item:nth-child(2) .plans__item-button{
    background-color: #FFFFFF;
    color: #1369CF;
}
.plans__item:nth-child(2) .plans__item-price span{
    color: #FFFFFF;
}
.plans__item:nth-child(2)  ul > li{
    color: #FFFFFF;
}
.plans__item:nth-child(2)  ul > li::before{
    filter: invert(99%) sepia(99%) saturate(2%) hue-rotate(212deg) brightness(104%) contrast(100%);
}
.plans__item:nth-child(2) .plans__item-button{
    background-color: white;
    color: #1369CF;
}
.plans__item:nth-child(2) .plans__item-button:hover{
    transition: 0.5s;
    background-color: #dfebfa;
}
.plans__item-button:hover{
    transition: 0.5s;
    background-color: #dfebfa;
}
/* PLANS */

/* FORGET */
.forget{
    width: 100%;
    height: auto;
    float: left;
}
.forget__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 100px 0 110px;
    background: #FFFFFF;
    border-radius: 10px;
}
.forget__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.forget__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: center;
}
.forget__item form{
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 40px auto 0;
}
.forget__item form > label{
    width: 100%;
    height: auto;
    float: left;
}
.forget__item form > label > input{
    width: 100%;
    height: 51px;
    border: 2px solid #1369CF;
    border-radius: 5px;
    padding: 15px 20px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}
.forget__item form > button{
    border: unset;
    width: 100%;
    height: 51px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border-radius: 5px;
    padding: 15px 0;
    margin: 43px 0 0 0;
    cursor: pointer;
}
.forget__item-link{
    width: fit-content;
    height: auto;
    display: block;
    font-size: 18px;
    line-height: 21px;
    color: rgba(51, 51, 51, 0.7);
    margin: 20px auto 0;
}
/* FORGET */

/* SIGN UP NETWORKS */
.singUpNetworks{
    width: 100%;
    height: auto;
    float: left;
}
.singUpNetworks__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 100px 0 110px;
    background: #FFFFFF;
    border-radius: 10px;
}
.singUpNetworks__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.singUpNetworks__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: center;
}
.singUpNetworks__item__networks{
    width: 100%;
    max-width: 320px;
    height: auto;
}
.singUpNetworks__item__networks a{
    width: 100%;
    height: 51px;
    float: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    border: 2px solid #1369CF;
    border-radius: 5px;
    margin: 40px 0 0 0;
    padding: 12px 0 15px 70px;
    box-sizing: border-box;
    position: relative;
}
.singUpNetworks__item__networks a::before{
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 30px;
    top: 11px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.singUpNetworks__item__networks a.email::before{
    background-image: url("/static/images/career/icon/email-signup.svg");
}
.singUpNetworks__item__networks a.linkedin::before{
    background-image: url("/static/images/career/icon/linkedin-signup.svg");
}
.singUpNetworks__item__networks a.facebook::before{
    background-image: url("/static/images/career/icon/facebook-signup.svg");
}
.singUpNetworks__item__networks a.google::before{
    background-image: url("/static/images/career/icon/google-signup.svg");
}
/* SIGN UP NETWORKS */

/* SIGN UP */
.signUp{
    width: 100%;
    height: auto;
    float: left;
}
.signUp__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 100px 0 110px;
    background: #FFFFFF;
    border-radius: 10px;
}
.signUp__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.signUp__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: center;
}
.signUp__item form{
    width: 100%;
    max-width: 320px;
    height: auto;
}
.signUp__item form > label{
    width: 100%;
    height: auto;
    float: left;
    margin: 40px auto 0;
}
.signUp__item form > label > input{
    width: 100%;
    height: 51px;
    border: 2px solid #1369CF;
    border-radius: 5px;
    padding: 15px 20px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}
.signUp__item form > button{
    border: unset;
    width: 100%;
    height: 51px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border-radius: 5px;
    padding: 15px 0;
    margin: 40px 0 0 0;
    cursor: pointer;
}
.signUp__item .checkbox {
    margin: 20px 0 0 0;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
}
.signUp__item .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.signUp__item .custom-checkbox+label {
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.7);
    align-content: flex-start;
}
.signUp__item .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
    border: 1px solid #000000;
    border-radius: 2px;
}
.signUp__item .custom-checkbox:checked+label::before {
    border-color: #1469d0;
    background-color: #1469d0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.signUp__item .custom-checkbox+label a{
    display: contents;
    text-decoration: underline;
}
/* SIGN UP */

/* SIGN IN */
.signIn{
    width: 100%;
    height: auto;
    float: left;
}
.signIn__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 100px 0 110px;
    background: #FFFFFF;
    border-radius: 10px;
}
.signIn__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.signIn__item-title{
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: center;
}
.signIn__item form{
    width: 100%;
    max-width: 320px;
    height: auto;
}
.signIn__item form > label{
    width: 100%;
    height: auto;
    float: left;
    margin: 40px auto 0;
}
.signIn__item form > label:nth-child(1){
    margin: 20px auto 0;
}
.signIn__item form > label > input{
    width: 100%;
    height: 51px;
    border: 2px solid #1369CF;
    border-radius: 5px;
    padding: 15px 20px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}
.signIn__item form > button{
    border: unset;
    width: 100%;
    height: 51px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border-radius: 5px;
    padding: 15px 0;
    margin: 43px 0 0 0;
    cursor: pointer;
}
.signIn__item-link{
    width: fit-content;
    height: auto;
    display: block;
    font-size: 18px;
    line-height: 21px;
    color: rgba(51, 51, 51, 0.7);
    margin: 20px auto 0;
    padding: 0 0 3px;
    border-bottom: 1px solid;
}
.signIn__item-element{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    text-align: center;
    margin: 20px 0 0 0;
}
.signIn__item__networks{
    width: 100%;
    max-width: 320px;
    height: auto;
}
.signIn__item__networks a{
    width: 100%;
    height: 51px;
    float: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    border: 2px solid #1369CF;
    border-radius: 5px;
    margin: 40px 0 0 0;
    padding: 12px 0 15px 70px;
    box-sizing: border-box;
    position: relative;
}
.signIn__item__networks a::before{
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 30px;
    top: 11px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.signIn__item__networks a.linkedin::before{
    background-image: url("/static/images/career/icon/linkedin-signup.svg");
}
.signIn__item__networks a.facebook::before{
    background-image: url("/static/images/career/icon/facebook-signup.svg");
}
.signIn__item__networks a.google::before{
    background-image: url("/static/images/career/icon/google-signup.svg");
}
/* SIGN IN */

/* PROFILE */
.profile{
    width: 100%;
    height: auto;
    float: left;
}
.profile__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.profile-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: left;
    padding: 100px 30px 40px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 10px 10px 0 0;
}
.profile__item:nth-child(2){
    width: 35%;
    height: auto;
    background: #FFFFFF;
    border: 10px solid #EFF2F5;
    border-bottom: unset;
    border-left: unset;
    border-radius: 30px;
    box-sizing: border-box;
    margin: -20px 0 0 0;
    z-index: 100;
}
.profile__item:nth-child(3){
    width: 65%;
    height: auto;
    background: #FFFFFF;
    border-radius: 0 30px 30px 0;
    border: 10px solid #EFF2F5;
    border-right: unset;
    border-left: unset;
    border-bottom: unset;
    box-sizing: border-box;
    margin: -20px 0 0 0;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.profile__item:nth-child(3)::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 10px;
    left: -60px;
    top: -10px;
    background: #eff2f6;
}
.profile__item:nth-child(3)::after{
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    left: -45px;
    top: 0;
    background: white;
}
.profile__item__navigation{
    width: 68%;
    height: auto;
    margin: 56px auto 0;
}
.profile__item__navigation li{
    width: 100%;
    height: auto;
    margin: 40px auto 0;
}
.profile__item__navigation li > a{
    padding: 10px;
    width: 100%;
    height: 61px;
    border: 2px solid #1369CF;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.profile__item__navigation li > a > span{
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: left;
    position: relative;
}
.profile__item__navigation li > a > i{
    padding: 10px;
}

.profile__item__navigation li > a.new > span::before{
    background-image: url("/static/images/career/icon/new.svg");
}
.profile__item__navigation li > a.import > span::before{
    background-image: url("/static/images/career/icon/import.svg");
}
.profile__box{
    width: calc(33.3% - 13px);
    height: auto;
    margin: 0 0 40px 0;
    position: relative;
}
.profile__box-nav {
    background: linear-gradient(90deg, rgb(0, 0, 0), rgba(50, 50, 50, 0.3)); /* Gradient from black to lighter gray */
    border-radius: 12px; /* Smooth rounded corners */
    padding: 10px 15px;
    position: absolute;
    width: 100%;
    top: 0px; /* Adjust position slightly */
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align items vertically */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Add shadow for depth */
    cursor: pointer;
}

.profile__box-nav .edit-icon {
    font-size: 20px; /* Clean, visible size */
    color: white; /* Contrast with gradient background */
    padding: 10px 12px;
    border-radius: 6px; /* Soft rectangle shape */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */
}

.profile__box-nav .edit-icon:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

.profile__box-nav .dots {
    display: flex;
    gap: 5px; /* Space between the dots */
    padding: 10px;
}

.profile__box-nav .dots span {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ffffff, #cccccc); /* Subtle gradient for dots */
    border-radius: 50%; /* Circular dots */
    transition: transform 0.2s ease, background 0.2s ease; /* Smooth hover effect */
}

.profile__box ul{
    width: fit-content;
    height: auto;
    padding: 13px 20px 10px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    top: 31px;
    right: 9px;
    position: absolute;
    display: none;
}
.profile__box ul > li{
    margin: 0 0 5px;
}
.profile__box ul > li > a{
    font-size: 14px;
    line-height: 135%;
    color: #000000;
}
.profile__box ul > li > a.job{
    color: #1369CF;
}
.profile__box ul > li > a.delet{
    color: #FF0000;
}
.profile__box-poster {
    border-radius: 8px; /* Slightly rounded corners for a modern look */
    width: 100%;
    height: 283px;
    float: left;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(0, 0, 0, 0.1); /* Subtle border with slight transparency */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    object-position: top; /* Align the top part of the image */
}
.profile__box-poster:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25); /* Enhance shadow on hover */
}

.profile__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
    margin: 10px 0 0 0;
}
/* PROFILE */

/* EDITOR */
.editor{
    width: 100%;
    height: auto;
    float: left;
}
.editor__row {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:10px 30px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFFFFF;
}
.editor__item {
    width: calc(50% - 20px);
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}

.editor__item-cvTitle{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
    text-align: left;
    margin: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
/* .editor__item-cvTitle::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    z-index: 10005;
    background-color: #ffffff00;
} */
.editor__item-cvTitle b{
    font-weight: 600;
    width: 100%;
}
.editor__item-cvTitle input{
    width: 90%;
    height: auto;
    float: left;
    font-size: 14px;
    line-height: 135%;
    color: #000000;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding: 8px 10px;
    box-sizing: border-box;
    margin: 5px 0 0 0;
}
.editor__item-cvTitle.edition input{
    border: 1px solid #1469d0;
}
.editor__item-cvTitleEdit{
    width: fit-content;
    height: auto;
    font-weight: 500;
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #1469d0;
    float: right;
    cursor: pointer;
    border-radius: 5px;
    margin: 2px 0 0 0;
}
.editor__item-download, .editor__item-share, .editor__item-edit, .editor__item-vacancies {
    width: 49%;
    height: auto;
    font-size: 14px;
    line-height: 21px;
    color: #1369CF;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    padding: 10px 0 11px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.career-paths-modal-error {
    display: block; /* Show the error message */
    color: #d32f2f; /* Keep the red color for error indication */
    font-size: 14px; /* Matches the screenshot's smaller font size */
    font-weight: 400; /* Regular weight for balance */
    padding: 4px 0; /* Reduced padding for a tighter fit below inputs */
    margin: 4px 0 8px; /* Smaller top margin, larger bottom margin for spacing */
    text-align: center; /* Aligns with the left-aligned text in the screenshot */
    line-height: 1.2; /* Improves readability for the error message */
}
.editor__item-career-paths {
    width: 30%;
    display: inline-block;
    padding: 11px 13px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff; /* Explicitly set color */
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    animation: career-paths-notify-glowButton 2s infinite alternate;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother easing function */
    font-size: 15px;
}
#course-dynamic-button:disabled {
    background: linear-gradient(45deg, #d1a3a3, #a8d5d2); /* Muted gradient reflecting original colors */
    color: #8a8a8a; /* Softer grey text for better contrast */
    border: 1px solid #b0b0b0; /* Subtle border to maintain shape */
    box-shadow: none; /* Remove shadow to indicate inactivity */
    cursor: not-allowed; /* Keep the not-allowed cursor */
    opacity: 0.7; /* Slight transparency to emphasize inactiveness */
    filter: saturate(0.3); /* Desaturate colors to make it look "faded" */
    transition: all 0.3s ease; /* Smooth transition for any state changes */
}
#course-dynamic-button:hover:not(:disabled) {
    background: linear-gradient(45deg, #ff9966, #66d9cc);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 153, 102, 0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.editor__item-career-paths:hover {
    background: linear-gradient(45deg, #ff9966, #66d9cc); /* Softer, warmer gradient */
    transform: scale(1.08); /* Slightly more pronounced scale */
    box-shadow: 0 8px 25px rgba(255, 153, 102, 0.8); /* Enhanced, softer shadow */
    color: #fff; /* Ensure color stays white on hover */
    text-decoration: none; /* Explicitly remove underline on hover */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Ultra-smooth transition */
}
.career-path-notification {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    flex-direction: column; /* Stack message and buttons vertically */
    align-items: center; /* Center content */
    background: linear-gradient(135deg, #2a5298, #ff6b6b); /* Gradient background inspired by career paths */
    color: #fff;
    padding: 15px 25px; /* Slightly reduced padding for simplicity */
    border-radius: 12px; /* Softer corners */
    border-image: linear-gradient(45deg, #4ecdc4, #ff9966) 1; /* Gradient border */
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3); /* Softer shadow */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    opacity: 0;
    transform: translate(-50%, -20px); /* Keep horizontal centering */
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
    z-index: 1000;
    animation: career-path-notification-float 3s infinite ease-in-out; /* Subtle floating animation */
    line-height: 1.8;
}


.career-path-notification .career-paths-notify-path-button {
    display: inline-flex; /* Use inline-flex to behave like a button */
    align-items: center;
    justify-content: center;
    padding: 8px 16px; /* Padding for a button-like appearance */
    height: 40px; /* Match the height of navigation buttons */
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    animation: career-paths-notify-glowButton 2s infinite alternate;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin: 0 10px; /* Add spacing between buttons */
}

.career-path-notification .career-paths-notify-path-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.7);
}

.beautify-icon {
    display: inline-flex; /* Use inline-flex to behave like a button */
    align-items: center;
    justify-content: center;
    padding: 2px 8px; /* Match the padding of career-paths-notify-path-button */
    height: 30px; /* Match the height of navigation buttons */
    font-size: 12px; /* Match the font size of career-paths-notify-path-button */
    font-weight: bold;
    background: linear-gradient(45deg, #6b6bff, #ff6b9b); /* Different gradient for distinction */
    color: #fff;
    border-radius: 20px; /* Match the rounding of career-paths-notify-path-button */
    box-shadow: 0 4px 15px rgba(107, 107, 255, 1); /* Shadow matching the gradient */
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.career-paths-notify-path-button.beautify-icon.small {
    height: 30px;
    font-size: 14px;
}

.career-path-message {
    font-size: 1em;
}


@media (max-width: 768px) {
    /* Existing mobile styles for the notification */
    .career-path-notification {
        top: 10px;
        width: 90%;
        max-width: 320px;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.9;
        box-shadow: 0 4px 10px rgba(255, 107, 107, 0.2);
        transform: translate(-50%, -10px);
    }



    /* Existing styles for the career-path-message paragraph */
    .career-path-message {
        margin: 0;
        font-size: 14px;
        line-height: 1.9;
        text-align: center;
    }

    /* Existing styles for the career-paths-notify-path-button inside the notification */
    .career-path-notification .career-paths-notify-path-button {
        display: inline;
        padding: 2px 6px;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        color: #fff;
        border-radius: 8px;
        box-shadow: none;
        animation: none;
        transition: background-color 0.3s ease-in-out;
    }

    .career-path-notification .career-paths-notify-path-button:hover {
        background: linear-gradient(45deg, #ff8787, #66e0d9);
        transform: none;
        box-shadow: none;
    }

    .career-paths-notify-path-button.beautify-icon {
        display: inline-block; /* Make it inline to fit within the text */
        padding: 2px 6px; /* Match the padding of career-paths-notify-path-button */
        font-size: 14px; /* Match the surrounding text */
        line-height: 1.4; /* Align with the surrounding text */
        background: linear-gradient(45deg, #6b6bff, #ff6b9b); /* Different gradient for distinction */
        color: #fff;
        border-radius: 8px; /* Match the rounding of career-paths-notify-path-button */
        cursor: pointer; /* Indicate it’s clickable */
        transition: background-color 0.3s ease-in-out;
    }

    .career-path-notification .beautify-icon.notification:hover {
        background: linear-gradient(45deg, #8787ff, #ff87b3); /* Lighter gradient on hover */
    }

    /* Adjust the animation for the notification (unchanged) */
    @keyframes career-path-notification-float {
        0% {
            transform: translate(-50%, -10px);
        }
        50% {
            transform: translate(-50%, -5px);
        }
        100% {
            transform: translate(-50%, -10px);
        }
    }
}
.career-path-notification.show {
    opacity: 1;
    transform: translate(-50%, 0); /* Slide into place */
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5); /* Enhance shadow when visible */
}

/* Subtle glowing effect for the notification */
.career-path-notification::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 16px;
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    opacity: 0.3;
    z-index: -1;
    animation: career-path-notification-glow 2s infinite alternate;
}

/* Floating animation */
@keyframes career-path-notification-float {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -5px);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

/* Glowing effect animation */
@keyframes career-path-notification-glow {
    from {
        opacity: 0.3;
        filter: blur(8px);
    }
    to {
        opacity: 0.6;
        filter: blur(12px);
    }
}
  .role-advantages {
    color: #4CAF50;
  }
  
  

@media (max-width: 768px) {
    .editor__item-career-paths {
      display: flex;
      width: 100%;
      margin-bottom: 10px;
    }
  }
  


.editor__item-download:hover, .editor__item-share:hover, .editor__item-edit:hover, .editor__item-vacancies:hover{
    color: #FFFFFF;
    background: #1369CF;
}
.editor__item-download.active, .editor__item-share.active, .editor__item-edit.active, .editor__item-vacancies.active{
    color: #FFFFFF;
    background: #1369CF;
}
.editor__item-download span, .editor__item-share span, .editor__item-edit span, .editor__item-vacancies span{
    position: relative;
    padding: 0 0 0 25px;
}
.editor__item-download span::before{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 3px;
}
.editor__item-share span::before{
    content: "";
    position: absolute;
    width: 15px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 1px;
}
.editor__item-edit span::before{
    content: "";
    position: absolute;
    width: 17px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 1px;
}
.editor__item-vacancies span::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: -1px;
    top: 1px;
}
.editor__item-download span::before{
    background-image: url("/static/images/career/icon/download.svg");
    filter: invert(75%) sepia(94%) saturate(1039%) hue-rotate(191deg) brightness(107%) contrast(108%);
}
.editor__item-share span::before{
    background-image: url("/static/images/career/icon/share.svg");
    filter: invert(75%) sepia(94%) saturate(1039%) hue-rotate(191deg) brightness(107%) contrast(108%);
}
.editor__item-edit span::before{
    background-image: url("/static/images/career/icon/edit.svg");
    filter: invert(75%) sepia(94%) saturate(1039%) hue-rotate(191deg) brightness(107%) contrast(108%);
}
.editor__item-vacancies span::before{
    background-image: url("/static/images/career/icon/vacancies.svg");
    filter: invert(75%) sepia(94%) saturate(1039%) hue-rotate(191deg) brightness(107%) contrast(108%);
}

.editor__item-download:hover span::before, .editor__item-edit:hover span::before, .editor__item-share:hover span::before, .editor__item-vacancies:hover span::before{
    filter: unset;
}
.editor__item-download.active span::before, .editor__item-edit.active span::before, .editor__item-share.active span::before, .editor__item-vacancies.active span::before{
    filter: unset;
}
.editor__item__view {
    width: 100%;
    height: auto;
    background: #D9D9D9;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    margin: 45px 0 0 0;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.editor__item__view .cv {
    position: sticky;
    width: 99%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding-top: 0px;
    border-left: 1px solid #ccc;
    background: #fff;

}
@media (max-width: 768px) {
    .editor__item__view .cv {
        height: 35em;
    }
}




.editor__item__selects{
    width: 100%;
    height: auto;
    margin: 22px 0 0 0;
    position: relative;
}
.editor__item__selects.disabled::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10005;
}
.editor__item__select{
    width: 100%;
    height: auto;
    float: left;
    padding: 26px;
    box-sizing: border-box;
    background: #EFF2F5;
    border-radius: 5px;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.editor__item__select__box:nth-child(2){
    display: none;
    position: relative;
}
.editor__item__select__box:nth-child(2)::before{
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 45px);
    left: 0;
    top: 0;
    z-index: 10005;
}
.editor__item__select.edition .editor__item__select__box:nth-child(2)::before{
    display: none;
}
.editor__item__select__block{
    width: fit-content;
    height: auto;
}
.editor__item__select__block-edit{
    width: fit-content;
    height: auto;
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #1469d0;
    float: right;
    cursor: pointer;
    display: none;
}
.editor__item__select.show .editor__item__select__block-edit{
    display: block !important;
}
.editor__item__select__block-title{
    width: fit-content;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 34px;
    line-height: 135%;
    color: #000000;
    background-color: unset;
    border: unset;
    padding: 0;
    position: relative;
    cursor: pointer;
}
.editor__item__select__block.premium{
    padding: 0 0 0 47px;
    margin: 0;
    position: relative;
}
.editor__item__select__block.premium::before{
    content: "";
    position: absolute;
    width: 37px;
    height: 35px;
    left: 0;
    top: 5px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.premiumSection{
    padding: 0;
    background-color: unset;
    margin: 20px 0 35px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.editor__item__select-premium{
    width: fit-content;
    height: auto;
    float: right;
    font-weight: 500;
    font-size: 34px;
    line-height: 135%;
    color: #000000;
}
.premiumSection::before{
    content: "";
    position: absolute;
    width: 65%;
    height: 25px;
    left: 0;
    top: 9px;
    border-radius: 30px;
    background-image: url("/static/images/career/vectory/premium-element.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.editor__item__select__box__hobbies{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__hobbies__append{
    display:contents;
}
.editor__item__select__box__hobbies label{
    width: calc(50% - 12px);
    height: auto;
    margin: 15px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.editor__item__select__box__hobbies label > img{
    width: 35px;
    height: 35px;
    object-fit: contain;
    object-position: center;
}
.editor__item__select__box__hobbies label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 15px auto 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__hobbies label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.go-back-button {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  .go-back-button:hover {
    background-color: #eaeaea;
  }

  .role-salary {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .role-salary span {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #42a5f5, #1e88e5);
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  
  .role-salary span:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Optional arrow styling if you want a separate span for the arrow */
  .arrow {
    margin-right: 6px;
    font-size: 16px;
  }

.editor__item__select__box__hobbies-add{
    width: 100%;
    height: 100%;
    min-height: 85px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    border: 1px dashed #1369CF;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__hobbies-add{
    display: flex;
}
.editor__item__select__box__media{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__media__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__media__box{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
}
.editor__item__select__box__media__block:nth-child(1){
    width: 30px;
    height: auto;
}
.editor__item__select__box__media__block:nth-child(2){
    width: 45%;
    height: auto;
}
.editor__item__select__box__media__block:nth-child(3){
    width: 35%;
    height: auto;
}
.editor__item__select__box__media__block:nth-child(4){
    width: 20px;
    height: auto;
}
.editor__item__select__box__media__block-network{
    width: 30px;
    height: 30px;
    float: left;
    object-fit: contain;
    object-position: center;
    margin: 0 0 5px;
}
.editor__item__select__box__media__block-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 400;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__media__block input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px auto 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__media__block > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__media__block-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    margin: 0 0 9px;
}
.editor__item__select__box__media__box-add{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 5px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__media__box-add{
    display: block;
}
.editor__item__select__box-hide{
    width: 100%;
    height: 35px;
    background: #1369CF;
    border-radius: 5px;
    float: left;
    margin: 15px 0 0 0;
    cursor: pointer;
    background-image: url("/static/images/career/icon/hide.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
}
.editor__item__select__box__text{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
/* EDITOR */

.editor__widget {
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    margin: 15px 0 0 0;
}
.editor__widget-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__widget ul{
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.editor__widget ol > li {
    list-style: auto;
}
.editor__widget ul > li {
    list-style: disc;
}
.options {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #E2E8EE;
    border-radius: 5px;
    padding: 3px 4px;
    box-sizing: border-box;
    align-content: center;
}
.editor__widget button {
    height: auto;
    width: 30px;
    display: grid;
    place-items: center;
    border-radius: 3px;
    border: none;
    background-color: #ffffff;
    outline: none;
    color: #020929;
    padding: 10px 0;
    margin: 0 5px 0 0;
    cursor: pointer;
}
.editor__widget button.active {
    background-color: #e0e9ff;
}
.editor__widget-textarea{
    padding: 10px;
    height: 160px;
    box-sizing: border-box;
    outline: unset;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.editor__widget-textarea::-webkit-scrollbar {
  display: none;
}

/*
select {
    padding: 7px;
    border: 1px solid #020929;
    border-radius: 3px;
}
.options label,
.options select {
    font-family: "Poppins", sans-serif;
}
.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}
input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    width: 40px;
    height: 28px;
    border: none;
    cursor: pointer;
}
input[type="color"]::-webkit-color-swatch {
    border-radius: 15px;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #020929;
}
input[type="color"]::-moz-color-swatch {
    border-radius: 15px;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #020929;
}
*/
.editor__item__select__box__work{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__work__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__work__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__work__block{
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__work__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__work__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__work__block__controler{
    width: fit-content;
    height: auto;
    float: right;
    display: flex;
}
.editor__item__select__box__work__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__work__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__work__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__work__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}
.editor__item__select__box__work-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: block;
}
.editor__item__select.edition .editor__item__select__box__work-add{
    display: block;
}
.editor__item__select__box__work__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__work__form label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__work__form label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__work__form label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__work__form label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__work__form-duration{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.editor__item__select__box__work__form-duration::before{
    content: "";
    position: absolute;
    width: 16px;
    height: 1px;
    background-color: rgba(19, 105, 207, 0.5);
    left: 50%;
    top: 43px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.editor__item__select__box__work__form label > select{
    width: calc(50% - 4.5px);
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid #dedede;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    background-image: url("/static/images/career/icon/drop.svg");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 13px;
}
.editor__item__select.edition .editor__item__select__box__work__form label > select{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__work__form .checkbox {
    width: fit-content;
    height: 17px;
    float: left;
    margin: 10px 0 0 0;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}
.editor__item__select__box__work__form .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.editor__item__select__box__work__form .custom-checkbox+label {
    width: fit-content;
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.7);
    align-content: flex-start;
    justify-content: flex-start;
}
.editor__item__select__box__work__form .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
    border: 1px solid #000000;
    border-radius: 2px;
    background-color: #fff;
}
.editor__item__select__box__work__form .custom-checkbox:checked+label::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.editor__item__select__box__work__form .custom-checkbox+label a{
    display: contents;
    text-decoration: underline;
}

.editor__item__select__box__volunteering{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__volunteering__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__volunteering__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__volunteering__block{
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__volunteering__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__volunteering__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__volunteering__block__controler{
    width: fit-content;
    height: auto;
    float: right;
    display: flex;
}
.editor__item__select__box__volunteering__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__volunteering__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__volunteering__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__volunteering__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}
.editor__item__select__box__volunteering-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__volunteering-add{
    display: block;
}
.editor__item__select__box__volunteering__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__volunteering__form label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__volunteering__form label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__volunteering__form label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__volunteering__form label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__volunteering__form-duration{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.editor__item__select__box__volunteering__form-duration::before{
    content: "";
    position: absolute;
    width: 16px;
    height: 1px;
    background-color: rgba(19, 105, 207, 0.5);
    left: 50%;
    top: 43px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.editor__item__select__box__volunteering__form label > select{
    width: calc(50% - 4.5px);
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid rgba(19, 105, 207, 0.5);
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    background-image: url("/static/images/career/icon/drop.svg");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 13px;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__volunteering__form label > select{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__volunteering__form .checkbox {
    width: fit-content;
    height: 17px;
    float: left;
    margin: 10px 0 0 0;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}
.editor__item__select__box__volunteering__form .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.editor__item__select__box__volunteering__form .custom-checkbox+label {
    width: fit-content;
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.7);
    align-content: flex-start;
    justify-content: flex-start;
}
.editor__item__select__box__volunteering__form .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
    border: 1px solid #000000;
    border-radius: 2px;
    background-color: #fff;
}
.editor__item__select__box__volunteering__form .custom-checkbox:checked+label::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.editor__item__select__box__volunteering__form .custom-checkbox+label a{
    display: contents;
    text-decoration: underline;
}

.editor__item__select__box__reference{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__reference__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__reference__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__reference__block{
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__reference__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__reference__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__reference__block__controler{
    display: flex;
}
.editor__item__select__box__reference__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__reference__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__reference__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}
.editor__item__select__box__reference__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__reference-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__reference-add{
    display: block;
}
.editor__item__select__box__reference__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__reference__form label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__reference__form label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__reference__form label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid rgba(19, 105, 207, 0.5);
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__reference__form label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}

.editor__item__select__box__education{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__education__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__education__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__education__block{
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__education__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__education__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__education__block__controler{
    width: fit-content;
    height: auto;
    float: right;
    display: flex;
}
.editor__item__select__box__education__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__education__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__education__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__education__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}

/* Notification container */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding: 20px;
    width: 300px;
    text-align: center;
    background-color: #4CAF50; /* Green for success */
    color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100000;
    font-family: Arial, sans-serif;
}

/* Error notification */
.notification.error {
    background-color: #f44336; /* Red for error */
}


/* Progress bar */
.progress-bar {
    height: 4px;
    background-color: #ffffff;
    width: 100%;
    border-radius: 0 0 4px 4px;
    animation: progress 10s linear;
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}


.editor__item__select__box__education-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: block;
}
.editor__item__select.edition .editor__item__select__box__education-add{
    display: block;
}
.editor__item__select__box__education__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__education__form label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__education__form label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__education__form label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__education__form label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__education__form-duration{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.editor__item__select__box__education__form-duration::before{
    content: "";
    position: absolute;
    width: 16px;
    height: 1px;
    background-color: rgba(19, 105, 207, 0.5);
    left: 50%;
    top: 43px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.editor__item__select__box__education__form label > select{
    width: calc(50% - 4.5px);
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid #dedede;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    background-image: url("/static/images/career/icon/drop.svg");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 13px;
}
.editor__item__select.edition .editor__item__select__box__education__form label > select {
    border: 1px solid rgba(19, 105, 207, 0.5);
    width: 16em;
  }
  /* On mobile (max-width: 600px), stack inputs vertically */
  @media (max-width: 600px) {
    .inline-fields {
      flex-direction: column;
      gap: 10px; /* Reduced gap for mobile */
      width: 100%; /* Ensure it takes the full width of the parent */
      align-items: stretch; /* Ensure children stretch to fit */
    }
  
    .inline-fields label {
      width: 100%; /* Ensure labels take full width */
      display: flex; /* Ensure label content is visible */
      flex-direction: column;
    }
  
    .inline-fields select {
      width: 100%; /* Make dropdowns fit the parent width */
      box-sizing: border-box; /* Include padding/borders in width */
      display: block; /* Ensure dropdowns are visible */
    }
  
    .editor__item__select__box__education__form {
      width: 100%; /* Ensure the form container doesn’t overflow */
      max-width: 100%; /* Prevent it from exceeding the parent */
      box-sizing: border-box; /* Include padding/borders in width */
      overflow-x: visible; /* Allow content to be visible */
    }
  
    .editor__item__select__box__education__block {
      width: 100%; /* Ensure the block container fits */
      box-sizing: border-box;
    }
  }


  .pdf-error-modal {
    display: none;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .pdf-error-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
  }
  
  .pdf-error-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
  }
  
  .pdf-error-close:hover,
  .pdf-error-close:focus {
    color: #333;
  }
  
  .pdf-error-modal-content h2 {
    margin-top: 0;
    font-size: 22px;
    color: #333;
  }
  
  .pdf-error-modal-content p {
    font-size: 16px;
    color: #555;
    margin: 15px 0;
  }
  
  .pdf-error-action,
  .pdf-error-action:hover,
  .pdf-error-action:focus {
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
  
  
.editor__item__select__box__education__form .checkbox {
    width: fit-content;
    height: 17px;
    float: left;
    margin: 10px 0 0 0;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}
.editor__item__select__box__education__form .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.editor__item__select__box__education__form .custom-checkbox+label {
    width: fit-content;
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.7);
    align-content: flex-start;
    justify-content: flex-start;
}
.editor__item__select__box__education__form .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
    border: 1px solid #000000;
    border-radius: 2px;
    background-color: #fff;
}
.editor__item__select__box__education__form .custom-checkbox:checked+label::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.editor__item__select__box__education__form .custom-checkbox+label a{
    display: contents;
    text-decoration: underline;
}
.editor__item__select__box__achievements{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}

.editor__item__select__box__awards{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__awards__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__awards__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__awards__block{
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__awards__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__awards__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__awards__block__controler{
    display: flex;
}
.editor__item__select__box__awards__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__awards__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__awards__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}
.editor__item__select__box__awards__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__awards-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__awards-add{
    display: block;
}
.editor__item__select__box__awards__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__awards__form label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__awards__form label.url{
    width: 100%;
}
.editor__item__select__box__awards__form label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__awards__form label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid rgba(19, 105, 207, 0.5);
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__awards__form label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__awards__form label > select{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid rgba(19, 105, 207, 0.5);
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    background-image: url("/static/images/career/icon/drop.svg");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 13px;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__awards__form label > select{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__certificates{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__certificates__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__certificates__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__certificates__block{
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__certificates__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__certificates__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__certificates__block__controler{
    display: flex;
}
.editor__item__select__box__certificates__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__certificates__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__certificates__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}
.editor__item__select__box__certificates__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__certificates-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__certificates-add{
    display: block;
}
.editor__item__select__box__certificates__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__certificates__form label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__certificates__form label.url{
    width: 100%;
}
.editor__item__select__box__certificates__form label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__certificates__form label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__certificates__form label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__certificates__form label > select{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    background-image: url("/static/images/career/icon/drop.svg");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 13px;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__certificates__form label > select{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__publications{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__publications__append{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__publications__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__publications__block{
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__publications__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__publications__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__publications__block__controler{
    display: flex;
}
.editor__item__select__box__publications__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__publications__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__publications__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}
.editor__item__select__box__publications__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__publications-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__publications-add{
    display: block;
}
.editor__item__select__box__publications__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__publications__form label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__publications__form label.url{
    width: 100%;
}
.editor__item__select__box__publications__form label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__publications__form label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__publications__form label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__publications__form label > select{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    background-image: url("/static/images/career/icon/drop.svg");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 13px;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__publications__form label > select{
    border: 1px solid rgba(19, 105, 207, 0.5)
}

.editor__item__select__box__skills{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    overflow: hidden;
}
.editor__item__select__box__skills__append{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.editor__item__select__box__skills__section{
    width: 100%;
    height: auto;
    float: left;
    background: #E2E8EE;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.editor__item__select__box__skills__block{
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__skills__block:nth-child(2){
    border-top: 1px solid rgba(19, 105, 207, 0.7);
}
.editor__item__select__box__skills__block-title{
    width: fit-content;
    height: auto;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
}
.editor__item__select__box__skills__block__controler{
    width: fit-content;
    height: auto;
    float: right;
    display: flex;
}
.editor__item__select__box__skills__block__controler-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.editor__item__select__box__skills__block__controler-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.editor__item__select__box__skills__block__controler-arrow{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/drop.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer;
    float: left;
    margin: 0 0 0 10px;
    transform: rotate(0deg);
    transition: .4s;
}
.editor__item__select__box__skills__block__controler-arrow.active{
    transform: rotate(180deg);
    transition: .4s;
}

/* Skills dropdown list styling */
.dropdown-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* This will align items horizontally */
    flex-wrap: wrap; /* This allows items to wrap onto a new line if there are too many */
    gap: 10px; /* Adds space between items */
    width: 100%;
    }


#dropdown {
        display: flex;
        flex-wrap: wrap; /* Allows items to wrap to the next line if needed */
        gap: 10px; /* Adds spacing between items */
        list-style-type: none;
        padding: 0;
        margin: 15px 0;
    }


/* Individual items in the dropdown */
/* .dropdown-list li {
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
} */

#skills-dropdown li {
    width: fit-content;
    height: auto;
    font-weight: 500;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    float: left;
    padding: 0 0 15px;
    margin: 0 24px 0 0;
    cursor: pointer;

}

#skills-dropdown {
    padding-top: 20px;
    border-top: 1px solid rgba(19, 105, 207, 0.5);
    margin-bottom: 1em;
}

.editor__item__select__box__skills-add {
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 20px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__skills-add{
    display: block;
}
.editor__item__select__box__skills__form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__skills__form__append{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__skills__form__section{
    width: 100%;
    height: auto;
    font-weight: 500;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    float: left;
    padding: 0 0 15px;
    margin: 0 24px 0 0;
    cursor: pointer;
}
.editor__item__select__box__skills__form__box {
    position: relative;
    width: 100%;
}
.editor__item__select__box__skills__form__box:nth-child(1){
    width: 45%;
    height: auto;
}
.editor__item__select__box__skills__form__box:nth-child(2){
    width: 35%;
    height: auto;
}
.editor__item__select__box__skills__form__box:nth-child(3){
    width: 12%;
    height: auto;
}
.editor__item__select__box__skills__form__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__skills__form__box input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__skills__form__box input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__skills__form__box-level{
    width: 100%;
    height: auto;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 8px 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__skills__form__box-level{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__skills__form__box-level .checkbox {
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    margin: 0 3px 0 0;
    border-radius: 100px;
    cursor: pointer;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__skills__form__box-level > .checkbox{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__skills__form__box-level .checkbox.active{
    background: #E2E8EE;
}
.editor__item__select__box__skills__form__box-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: right;
    margin: 0 0 9px 0;
}
.editor__item__select__box__skills__form__box-premium{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/premium.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    float: left;
    margin: 0 0 7px 0;
}
.editor__item__select__box__skills__form-add{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    text-align: center;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    padding: 9px 0;
    margin: 15px 0 0 0;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__skills__form-add{
    display: block;
}

.editor__item__select__box__strengths{
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__strengths__block{
    width: 100%;
    height: auto;
    float: left;
    margin: 15px 0 0 0;
}
.editor__item__select__box__strengths__block-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__strengths__create{
    position: relative;
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0 0 0;
    align-content: center;
    align-items: center;
}
.editor__item__select__box__strengths__create input{
    width: 65%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid rgba(19, 105, 207, 0.5);
    border-radius: 5px;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__strengths__create > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__strengths__create-button{
    width: 30%;
    height: 35px;
    font-size: 13px;
    line-height: 135%;
    color: #FFFFFF;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    cursor: pointer;
}
.editor__item__select__box__strengths__block ul{
    width: 100%;
    height: auto;
    float: left;
    border-bottom: 1px solid rgba(19, 105, 207, 0.5);
    margin: 15px 0 0 0;
}
.editor__item__select__box__strengths__block ul > li{
    width: fit-content;
    height: auto;
    font-weight: 500;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    float: left;
    padding: 0 0 15px;
    margin: 0 24px 0 0;
    cursor: pointer;
}
.editor__item__select__box__strengths__list{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0 0 0;
    align-content: center;
    align-items: center;
}
.editor__item__select__box__strengths__list input{
    width: 90%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__strengths__list > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__strengths__list-delet{
    width: 20px;
    height: 20px;
    background-image: url("/static/images/career/icon/delet.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.editor__item__select__box__graphs{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
}
.editor__item__select__box__graphs__append{
    display: contents;
}
.editor__item__select__box__graphs__append .editor__item__select__box__graphs__section{
    width: 45%;
    margin: 15px 0 0 0;
}
.editor__item__select__box__graphs__block{
    width: 45%;
    height: auto;
    margin: 15px 0 0 0;
}
.editor__item__select__box__graphs__block-add{
    width: 100%;
    height: 100%;
    min-height: 278px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #1369CF;
    border: 1px dashed #1369CF;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    cursor: pointer;
    display: none;
}
.editor__item__select.edition .editor__item__select__box__graphs__block-add{
    display: flex;
}
.editor__item__select__box__graphs__section{
    width: 100%;
    height: auto;
    float: left;
}
.editor__item__select__box__graphs__section label{
    width: 100%;
    height: auto;
    float: left;
    margin: 15px 0 0 0;
}
.editor__item__select__box__graphs__section label > span{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__graphs__section label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border: 1px solid rgba(19, 105, 207, 0.5);
    border-radius: 5px;
    margin: 10px auto 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__graphs__section label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
@property --percentage {
    initial-value: 0%;
    inherits: false;
    syntax: "<percentage>";
}
  
.editor__item__select__box__graphs__section-chart {
    background: conic-gradient(#1369CF var(--percentage), #E2E8EE 0);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    --percentage: 0%;
    position: relative;
}
.editor__item__select__box__graphs__section-chart::after{
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    background-color: #EFF2F5;
    border-radius: 100%;
}
.editor__item__select__box__graphs__section-chart input {
    position: absolute;
    font-weight: 500;
    font-size: 34px;
    color: #000000;
    width: -webkit-fill-available;
    border: unset;
    text-align: center;
    background: unset;
    z-index: 10005;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: relative;
}

.editor__item__select__box__personal{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__personalSection{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 0 0;
}
.editor__item__select__box__personalSection__block:nth-child(1){
    width: 30%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-direction: column;
}
.editor__item__select__box__personalSection__block:nth-child(2){
    width: 65%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__personal label{
    width: calc(50% - 14px);
    height: auto;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.editor__item__select__box__personal label.url{
    width: 100%;
}
.editor__item__select__box__personal label > span{
    width: 100%;
    height: auto;
    min-height: 17px;
    float: left;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.editor__item__select__box__personal label > input{
    width: 100%;
    height: 35px;
    float: left;
    background: #FFFFFF;
    border-radius: 5px;
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 135%;
    color: #000000;
    padding: 9px 15px;
    box-sizing: border-box;
    border: 1px solid #dedede;
}
.editor__item__select.edition .editor__item__select__box__personal label > input{
    border: 1px solid rgba(19, 105, 207, 0.5)
}
.editor__item__select__box__personalSection__block-picture{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
    background: #D9D9D9;
    position: relative;
    overflow: hidden;
}
.editor__item__select__box__personalSection__block-picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}
.editor__item__select__box__personalSection__block-pictureUpload{
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0px;
    font-size: 13px;
    line-height: 135%;
    color: #FFFFFF;
    background: #333333;
    text-align: center;
    padding: 3px 0;
    transition: .4s;
    cursor: pointer;
}
.editor__item__select__box__personalSection__block-picture:hover {
    bottom: 0px;
    transition: .4s;
}
.editor__item__select__box__personalSection__block-pictureUpload input{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 10005;
    cursor: pointer;
}
.editor__item__select__box__personalSection__block .checkbox {
    width: fit-content;
    height: 17px;
    float: left;
    margin: 20px 0 0 0;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}
.editor__item__select__box__personalSection__block .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.editor__item__select__box__personalSection__block .custom-checkbox+label {
    width: fit-content;
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.7);
    align-content: flex-start;
    justify-content: flex-start;
}
.editor__item__select__box__personalSection__block .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
    border: 1px solid #000000;
    border-radius: 2px;
    background-color: #fff;
}
.editor__item__select__box__personalSection__block .custom-checkbox:checked+label::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.editor__item__select__box__personalSection__block .custom-checkbox+label a{
    display: contents;
    text-decoration: underline;
}
.editor__controler {
    width: 100%;
    height: auto;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px; /* Reduced padding for a tighter, cleaner look */
    box-sizing: border-box;
    margin: 0 0 10px 0;
    display: none; /* Use flexbox for consistent layout */
    flex-wrap: nowrap; /* Keep buttons in a single row */
    justify-content: center; /* Center the buttons */
    gap: 25px; /* Consistent spacing between buttons */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.editor__controler a {
    width: 50px; /* Fixed width for uniformity */
    height: 50px; /* Fixed height for uniformity */
    font-weight: 400;
    font-size: 0; /* Hide any text (not needed since we removed text labels) */
    color: #000000;
    text-align: center;
    margin: 0; /* Remove margin since gap handles spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center the icon vertically and horizontally */
    background: #f5f5f5; /* Light background for buttons */
    border-radius: 50%; /* Circular buttons */
    transition: background-color 0.2s ease, transform 0.2s ease; /* Smooth transitions */
}

.editor__controler a:hover {
    background: #e0e0e0; /* Slightly darker background on hover */
    transform: scale(1.05); /* Subtle scale effect on hover */
}

.editor__controler a > img {
    width: 24px; /* Smaller icon size for better fit */
    height: 24px;
    object-fit: contain;
    object-position: center;
    margin: 0; /* Remove margin since the button is centered */
}

.editor__controler a.active {
    background: #1369CF; /* Blue background for active state */
    color: #FFFFFF; /* Not needed for text, but kept for consistency */
}

.editor__controler a.active > img {
    filter: brightness(0) invert(1); /* White icon for active state */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .editor__controler {
        padding: 5px; /* Slightly less padding on mobile */
        gap: 20px; /* Slightly smaller gap on mobile */
    }

    .editor__controler a {
        width: 70px; /* Slightly smaller buttons on mobile */
        height: 70px;
    }

    .editor__controler a > img {
        width: 30px; /* Slightly smaller icons on mobile */
        height: 30px;
    }
}


/* MODAL NETWORKS */
.modalNetworks{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.modalNetworks__row{
    width: 95%;
    max-width: 700px;
    height: auto;
    padding: 90px 50px;
    background: #EFF2F5;
    border: 1px solid #1369CF;
    border-radius: 10px;
    position: relative;
}
.modalNetworks__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modalNetworks__box{
    width: 11%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}
.modalNetworks__box img{
    width: 45px;
    height: 45px;
    object-fit: contain;
    object-position: center;
}
.modalNetworks-close{
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzIgMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZGF0YS1uYW1lPSJMYXllciAyIj48cGF0aCBkPSJNNCAyOWExIDEgMCAwIDEtLjcxLS4yOSAxIDEgMCAwIDEgMC0xLjQybDI0LTI0YTEgMSAwIDEgMSAxLjQyIDEuNDJsLTI0IDI0QTEgMSAwIDAgMSA0IDI5WiIgZmlsbD0iIzEzNjljZiIgY2xhc3M9ImZpbGwtMDAwMDAwIj48L3BhdGg+PHBhdGggZD0iTTI4IDI5YTEgMSAwIDAgMS0uNzEtLjI5bC0yNC0yNGExIDEgMCAwIDEgMS40Mi0xLjQybDI0IDI0YTEgMSAwIDAgMSAwIDEuNDJBMSAxIDAgMCAxIDI4IDI5WiIgZmlsbD0iIzEzNjljZiIgY2xhc3M9ImZpbGwtMDAwMDAwIj48L3BhdGg+PC9nPjxwYXRoIGQ9Ik0wIDBoMzJ2MzJIMHoiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
/* MODAL NETWORKS */

/* MODAL HOBBY */
.modalHobby{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.modalHobby__row{
    width: 95%;
    max-width: 700px;
    height: auto;
    padding: 75px 50px 50px;
    background: #EFF2F5;
    border: 1px solid #1369CF;
    border-radius: 10px;
    position: relative;
}
.modalHobby__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modalHobby__box{
    width: 11%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
    cursor: pointer;
}
.modalHobby__box img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}
.modalHobby-close{
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzIgMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZGF0YS1uYW1lPSJMYXllciAyIj48cGF0aCBkPSJNNCAyOWExIDEgMCAwIDEtLjcxLS4yOSAxIDEgMCAwIDEgMC0xLjQybDI0LTI0YTEgMSAwIDEgMSAxLjQyIDEuNDJsLTI0IDI0QTEgMSAwIDAgMSA0IDI5WiIgZmlsbD0iIzEzNjljZiIgY2xhc3M9ImZpbGwtMDAwMDAwIj48L3BhdGg+PHBhdGggZD0iTTI4IDI5YTEgMSAwIDAgMS0uNzEtLjI5bC0yNC0yNGExIDEgMCAwIDEgMS40Mi0xLjQybDI0IDI0YTEgMSAwIDAgMSAwIDEuNDJBMSAxIDAgMCAxIDI4IDI5WiIgZmlsbD0iIzEzNjljZiIgY2xhc3M9ImZpbGwtMDAwMDAwIj48L3BhdGg+PC9nPjxwYXRoIGQ9Ik0wIDBoMzJ2MzJIMHoiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
/* MODAL HOBBY */

/* CAREER */
.career{
    width: 100%;
    height: auto;
    float: left;
    padding: 10px 0 0;
}
.career__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 60px 30px 30px;
    background: #FFFFFF;
    border-radius: 10px;
    box-sizing: border-box;
}
.career__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.career__item:nth-child(3){
    margin: 30px 0 0 0;
}
.career__item-title{
    font-weight: 500;
    font-size: 34px;
    line-height: 135%;
    text-transform: uppercase;
    color: #000000;
}
.career__item-filter{
    font-size: 21px;
    line-height: 135%;
    text-decoration-line: underline;
    color: #000000;
    cursor: pointer;
}
.career__item-filter p{
    display: contents;
}
.career__item-filter.active{
    color: #1369CF;
}
.career__box{
    width: calc(33.3% - 14px);
    height: auto;
    padding: 23px 21px 29px;
    box-sizing: border-box;
    border-radius: 3.43023px;
    margin: 20px 0 0 0;
    position: relative;
    transition: .4s;
}
.career__box:hover{
    transform: scale(1.05);
    transition: .4s;
}
.career__section{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 10005;
}
.career__block{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
}
.career__block-title{
    width: fit-content;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 21px;
    line-height: 135%;
    text-transform: capitalize;
    color: #000000;
}
.career__block-location{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 14px;
    line-height: 135%;
    color: #000000;
    margin: 15px 0 0 0;
}
.career__block-price{
    width: fit-content;
    height: auto;
    float: right;
    font-weight: 600;
    font-size: 21px;
    line-height: 135%;
    text-transform: capitalize;
    color: #000000;
}
.career__box-poster{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.career__box-loader{
    width: 100%;
    height: 19px;
    float: left;
    background: #EFF2F5;
    border: 1px solid #1369CF;
    border-radius: 10px;
    position: relative;
    z-index: 10005;
    margin: 66px 0 0 0;
}
.career__box-loader div{
    width: 90%;
    height: 100%;
    float: left;
    background: #1369CF;
    border-radius: 10px;
}
.career__box-loader div > span{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
    color: #FFFFFF;
}
.career__item__pagination{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0 0 0;
}
.career__item__pagination a{
    width: fit-content;
    height: auto;
    font-weight: 500;
    font-size: 21px;
    line-height: normal;
    text-transform: capitalize;
    color: #000000;
    padding: 9px 15px 10px;
    border-radius: 5px;
    position: relative;
}
.career__item__pagination a.previous{
    padding: 9px 15px 10px 28px;
}
.career__item__pagination a.previous::before{
    content: "";
    position: absolute;
    left: 10px;
    top: 19px;
    width: 13px;
    height: 7px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/static/images/career/icon/drop.svg");
    transform: rotate(90deg);
}
.career__item__pagination a.next{
    padding: 9px 28px 10px 15px;
}
.career__item__pagination a.next::before{
    content: "";
    position: absolute;
    right: 10px;
    top: 19px;
    width: 13px;
    height: 7px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/static/images/career/icon/drop.svg");
    transform: rotate(-90deg);
}
.career__item__pagination a:hover, .career__item__pagination a.active{
    background: #E2E8EE;
}
.career__item__filter{
    width: 100%;
    height: auto;
    float: left;
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #EFF2F5;
    border-radius: 10px;
    margin: 24px 0 0 0;
    padding: 30px 20px 50px;
    box-sizing: border-box;
}
.career__item__filter__block{
    width: 50%;
    height: auto;
}
.career__item__filter__block:nth-child(1){
    display: flex;
    flex-direction: column;
}
.career__item__filter__block:nth-child(3){
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0 0 0;
}
.career__item__filter__block-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 22px;
    line-height: 135%;
    text-transform: capitalize;
    color: #000000;
}
.career__item__filter__block-clean{
    width: fit-content;
    height: auto;
    font-size: 18px;
    line-height: 21px;
    color: #1369CF;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    padding: 10px 100px;
    margin: 0 5px;
}
.career__item__filter__block-apply{
    width: fit-content;
    height: auto;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    padding: 10px 100px;
    margin: 0 5px;
}
.career__item__filter__block .checkbox {
    width: fit-content;
    height: auto;
    float: left;
    margin: 9px 0 0 0;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}
.career__item__filter__block .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.career__item__filter__block .custom-checkbox+label {
    width: fit-content;
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.7);
    align-content: flex-start;
    justify-content: flex-start;
}
.career__item__filter__block .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40% 40%;
    background-color: #fff;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 2px;
}
.career__item__filter__block .custom-checkbox:checked+label::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    background-color: #1369CF;
    background-size: 65% 65%;
    background-repeat: no-repeat;
    background-position: center center;
}
.career__item__filter__block .custom-checkbox+label a{
    display: contents;
    text-decoration: underline;
}
.career__item__filter__block label{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}
.career__item__filter__block label > span{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    text-transform: capitalize;
    color: #000000;
    margin: 0 0 10px;
}
.career__item__filter__block label > input{
    width: 90%;
    height: 40px;
    float: left;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.7);
    padding: 0 10px;
    box-sizing: border-box;
}
.career__item__filter__block__interval{
    width: 70%;
    height: auto;
    float: left;
    margin: 15px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.career__item__filter__block__interval input{
    width: 46%;
    height: 40px;
    float: left;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.7);
    padding: 0 10px;
    box-sizing: border-box;
}
.career__item__filter__block label > select{
    width: 70%;
    height: 40px;
    float: left;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: rgba(0, 0, 0, 0.5);
    padding: 0 15px;
    box-sizing: border-box;
    background-image: url("/static/images/career/icon/drop.svg");
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 16px;
}
/* CAREER */

/* RESUME */
.resume{
    width: 100%;
    height: auto;
    float: left;
}
.resume-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
    text-align: left;
    padding: 100px 30px 40px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 10px 10px 0 0;
}
.resume__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 40px 30px 0;
    background: #FFFFFF;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.resume__row::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0px;
    top: -10px;
    background: #eff2f6;
    border-radius: 30px 30px 0 0;
}
.resume__item{
    width: calc(20% - 16px);
    height: auto;
    margin: 0 0 40px;
}
.resume__item-poster{
    width: 100%;
    height: 283px;
    float: left;
    object-fit: cover;
    object-position: center;
}
.resume__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
    margin: 10px 0 0 0;
}
/* RESUME */

/* PAYMENT */
.payment{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10005;
    background: #EFF2F5;
    overflow-x: scroll;
    box-sizing: border-box;
}
.payment__row{
    width: 100%;
    height: auto;
    float: left;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    position: relative;
    margin: 50px 0;
}
.payment-close{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/static/images/career/icon/close.svg");
    cursor: pointer;
}
.payment__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 100px 100px;
    box-sizing: border-box;
    align-content: center;
    align-items: center;
}
.payment__box{
    width: 50%;
    height: auto;
}
.payment__box-vectory{
    width: 90%;
    height: auto;
    float: left;
}
.payment__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 35px;
    line-height: 135%;
    color: #1369CF;
    text-align: left;
}
.payment__box-price{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 17px 20px;
    box-sizing: border-box;
    background: #EFF2F5;
    border-radius: 5px;
    margin: 20px 0 0 0;
    font-size: 23px;
    line-height: 135%;
    color: #000000;
}
.payment__box-price b{
    font-weight: 500;
    font-size: 23px;
    line-height: 135%;
    color: #000000;
}
.payment__box-total{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 20px 0 0;
    box-sizing: border-box;
    margin: 30px 0 0 0;
    font-weight: 600;
    font-size: 23px;
    line-height: normal;
    color: #000000;
    text-align: right;
}
.payment__box form{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.payment__box form > label{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.payment__box form > label > span{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: normal;
    color: #000000;
}
.payment__box form > label > input{
    width: 100%;
    height: auto;
    float: left;
    border: 1px solid #1369CF;
    border-radius: 5px;
    margin: 10px 0 0 0;
    padding: 18px;
    box-sizing: border-box;
}
.payment__box form > button{
    width: 100%;
    height: auto;
    float: left;
    margin: 40px 0 0 0;
    padding: 18px;
    box-sizing: border-box;
    background: #1369CF;
    border-radius: 5px;
    border: unset;
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    color: #FFFFFF;
    cursor: pointer;
}
.payment__box form .checkbox {
    width: fit-content;
    height: auto;
    float: left;
    margin: 19px 0 0 0;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}
.payment__box form .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.payment__box form .custom-checkbox+label {
    width: fit-content;
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.7);
    align-content: flex-start;
    justify-content: flex-start;
}
.payment__box form .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40% 40%;
    background-color: #fff;
    background: #FFFFFF;
    border: 1px solid #1369CF;
    border-radius: 2px;
}
.payment__box form .custom-checkbox:checked+label::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    background-color: #1369CF;
    background-size: 65% 65%;
    background-repeat: no-repeat;
    background-position: center center;
}
.payment__box form .custom-checkbox+label a{
    display: block;
    text-decoration: underline;
    color: #1469d0;
    margin: 0 5px;
}
/* PAYMENT */

/* OFFER */
.offer{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.offer__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 30px 30px 50px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 10px;
}
.offer__item{
    width: 100%;
    height: auto;
    float: left;
    margin: 30px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.offer__item:nth-child(1){
    margin: 0;
}
.offer__item__section{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.offer__item__block{
    width: fit-content;
    height: auto;
}
.offer__item__block-title{
    font-weight: 500;
    font-size: 34px;
    line-height: 135%;
    text-transform: uppercase;
    color: #000000;
}
.offer__item__block-price{
    font-weight: 500;
    font-size: 22px;
    line-height: 135%;
    color: rgba(0, 0, 0, 0.8);
}
.offer__item__block-price em{
    font-style: normal;
}
.offer__item__block-price span{
    font-weight: 600;
    font-size: 32px;
    line-height: 135%;
    text-transform: capitalize;
    color: #000000;
    margin: 0 0 0 10px;
}
.offer__item-description{
    width: 70%;
    height: auto;
    float: left;
    font-size: 25px;
    line-height: 135%;
    color: #000000;
    margin: 15px 0 0 0;
}
.offer__item-description b{
    font-weight: 600;
}
.offer__item__hashteg__types{
    width: 62%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.offer__item__hashteg__types a{
    width: fit-content;
    height: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px 10px 0 0;
}
.offer__item__hashteg__types a.type-1{
    background: #1369CF;
}
.offer__item__hashteg__types a.type-2{
    background: #DB1A32;
}
.offer__item__carousel{
    width: 100%;
    height: auto;
    float: left;
}
.offer__item__carousel .owl-dots{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0 0;
}
.offer__item__carousel .owl-dots > .owl-dot{
    width: 10.95px;
    height: 10.95px;
    border: 1.09542px solid #1369CF;
    border-radius: 100px;
    margin: 0 10px;
}
.offer__item__carousel .owl-dots > .owl-dot.active{
    background-color: #1369CF;
}
.offer__item__carousel .owl-nav{
    display: none !important;
}
.offer__item__carousel__box{
    width: 100%;
    height: auto;
    float: left;
    padding: 12px 12px 30px;
    background: #EFF2F5;
    border-radius: 5.47712px;
    box-sizing: border-box;
}
.offer__item__carousel__box-poster{
    width: 100%;
    height: 150.07px;
    float: left;
    border-radius: 2.19085px;
    object-fit: cover;
    object-position: center;
}
.offer__item__carousel__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    text-align: left;
    margin: 11px 0 0 0;
}
.offer__item__carousel__box-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    text-align: left;
    margin: 6px 0 0 0;
}
.offer__item-subtitle{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 24px;
    line-height: 135%;
    color: #000000;
    text-align: left;
    margin: 0 0 20px;
}
.offer__item-hashteg{
    width: fit-content;
    height: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0 10px 15px 0;
}
.offer__item-hashteg.type-1{
    background: #1369CF;
}
.offer__item-hashteg.type-2{
    background: #DB1A32;
}
.offer__item__vacancies{
    width: 100%;
    height: auto;
    float: left;
}
.offer__item__vacancies-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 24px;
    line-height: 135%;
    color: #000000;
    text-align: left;
}
.offer__item-editButton{
    width: fit-content;
    height: auto;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    padding: 13px 90px;
    margin: 25px auto 0;
}
.offer__item__vacancies ul{
    width: 100%;
    height: auto;
    float: left;
}
.offer__item__vacancies ul > li{
    width: 100%;
    height: 30px;
    float: left;
    margin: 15px 0 0 0;
}
.offer__item__vacancies ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 18px;
    line-height: 30px;
    text-decoration-line: underline;
    color: #1369CF;
    padding: 0 0 0 45px;
    position: relative;
}
.offer__item__vacancies ul > li > a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.offer__item__vacancies ul > li > a.hh::before{
    background-image: url("/static/images/career/icon/hh.svg");
}
.offer__item__vacancies ul > li > a.in::before{
    background-image: url("/static/images/career/icon/in.svg");
}
.offer__item__vacancies ul > li > a.i::before{
    background-image: url("/static/images/career/icon/i.svg");
}
/* OFFER */

/* PARTNER MODAL */
.partnerModal{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10005;
    display: none;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.partnerModal-close {
    width: 21px;
    height: 21px;
    position: absolute;
    right: 15px;
    top: 15px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzIgMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZGF0YS1uYW1lPSJMYXllciAyIj48cGF0aCBkPSJNNCAyOWExIDEgMCAwIDEtLjcxLS4yOSAxIDEgMCAwIDEgMC0xLjQybDI0LTI0YTEgMSAwIDEgMSAxLjQyIDEuNDJsLTI0IDI0QTEgMSAwIDAgMSA0IDI5WiIgZmlsbD0iIzEzNjljZiIgY2xhc3M9ImZpbGwtMDAwMDAwIj48L3BhdGg+PHBhdGggZD0iTTI4IDI5YTEgMSAwIDAgMS0uNzEtLjI5bC0yNC0yNGExIDEgMCAwIDEgMS40Mi0xLjQybDI0IDI0YTEgMSAwIDAgMSAwIDEuNDJBMSAxIDAgMCAxIDI4IDI5WiIgZmlsbD0iIzEzNjljZiIgY2xhc3M9ImZpbGwtMDAwMDAwIj48L3BhdGg+PC9nPjxwYXRoIGQ9Ik0wIDBoMzJ2MzJIMHoiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}
.partnerModal__row{
    width: 90%;
    max-width: 850px;
    height: auto;
    padding: 60px 35px 70px;
    background: #EFF2F5;
    border: 1px solid #1369CF;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.partnerModal__item:nth-child(2){
    width: 50%;
    height: auto;
}
.partnerModal__item:nth-child(3){
    width: 45%;
    height: auto;
}
.partnerModal__item-logo{
    width: 95px;
    height: 46px;
    float: left;
    object-fit: contain;
    object-position: center;
}
.partnerModal__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 40px;
    line-height: 46px;
    color: #000000;
    margin: 21px 0 0 0;
}
.partnerModal__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 21px;
    line-height: 30px;
    color: #000000;
    margin: 20px 0 0 0;
}
.partnerModal__item-button{
    width: 100%;
    height: auto;
    font-size: 18px;
    float: left;
    line-height: 21px;
    color: #FFFFFF;
    background: #1369CF;
    border: 1px solid #1369CF;
    border-radius: 5px;
    padding: 13px 0;
    margin: 35px auto 0;
    text-align: center;
}
.partnerModal__item-poster{
    width: 100%;
    height: 100%;
    float: left;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}
/* PARTNER MODAL */


.modal-email {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000000; /* On top of other elements */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.modal-email-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between elements */
}

.modal-email-content label {
    font-size: 16px;
    margin-bottom: 8px;
}

.modal-email-content input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.modal-email-content button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-email-success button {
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-email-content button:hover {
    background-color: #0056b3;
}

.modal-email-success {
    display: none;
    background-color: #f0f8f5;
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.modal-email-success p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.modal-email-success span {
    color: green;
    font-weight: bold;
}



.modal-beautifier {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* On top of other elements */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

input:invalid, textarea:invalid {
    box-shadow: none; /* Remove validation styling */
}

input:invalid:focus, textarea:invalid:focus {
    outline: none;
}



.modal-beautifier-content {
    position: relative;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 450px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#descriptionInputLayout label {
    width: 100%;
}
/* Modal Styling */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%; /* Add some margin on the sides */
    max-width: 600px; /* Ensure it doesn't stretch too wide */
    max-height: 95vh; /* Allow more space vertically */
    overflow: hidden; /* Enable scrolling if content is too large */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slight shadow for better appearance */
    margin: 0 10px; /* Add margin on the sides for smaller screens */
    position: relative;
    overflow: visible;    
}


@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Modal Close Button */
.custom-modal-close {
    position: absolute;
    top: 0px;
    right: 20px;    
    color: #aaa;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Header */
.custom-modal-header {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Template Cards Container */
.template-cards, .template-cards-ai {
    display: flex;
    gap: 25px;
    overflow: hidden; /* Hide scrollbars */
    white-space: nowrap; /* Prevent wrapping */
    scroll-behavior: auto; /* No smooth scrolling here */
    transition: transform 0.5s ease;
    will-change: transform;
}

.template-card {
    min-width: 200px;
    height: 320px;
    border: 3px solid #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background-color: #f0f0f0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 20px; /* Adjust as needed */
}

.template-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.template-card:hover {
    box-shadow: 0 8px 16px rgba(0, 123, 255, 0.3); /* Blueish shadow on hover */
    transform: scale(0.95); /* Zoom out effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition */
}
.template-card img:hover {
    filter: blur(0px);

}

/* Mobile adjustments */
@media (max-width: 768px) {
    .custom-modal-content {
        width: 100%;
        max-width: 400px;
    }

    .template-card {
        width: 100%; /* Single card per row on tablets */
    }
}

@media (max-width: 480px) {
    .custom-modal-content {
        width: 100%;
        padding: 10px; /* Reduce padding for small screens */
    }

    .template-card {
        width: 100%;
        height: auto; /* Adjust height for mobile */
        margin-bottom: 10px; /* Add some margin for better spacing */
    }

    .template-card img {
        border-radius: 5px; /* Slightly smaller border-radius for small screens */
        filter: blur(0px);
    }

    .custom-modal-header {
        font-size: 18px; /* Reduce font size on mobile */
    }

    .custom-modal-close {
        font-size: 20px; /* Adjust close button size */
        right: 10px;
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}
.close-btn:hover {
    color: #000;
}


.modal-beautifier-content label {
    font-size: 16px;
    margin-bottom: 8px;
}

.modal-beautifier-content input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

#submit-beautify {
    background-color: #0069d9;
    padding: 10px;
    border-radius: 3px;
    color: white;
}

.skill-button {
    margin-right: 2px;
	padding: 5px 10px;
	background-color: #84b1ff;
	border-radius: 4px;
	font-size: 14px;
	color: balck;
	text-align: center;
	white-space: nowrap;
	margin-bottom: 5px;
	border: none;
    margin-top: 1em;
}
.skill-button:hover {
	background-color: rgb(255, 146, 146);
	transition: 0.5s;
}
.registration-modal {
    display: flex; /* Ensure flexbox is applied */
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.registration-modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    animation: smoothFadeIn 0.3s ease-out;
    text-align: center;
}

.registration-modal-close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration-form label {
    font-weight: 600;
    text-align: left;
}

.registration-form input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.registration-button {
    background-color: #1369CF;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.registration-button:hover {
    background-color: #024392;
}

.checkbox {
    margin-top: 10px;
    text-align: left;
}

.custom-checkbox {
    margin-right: 5px;
}

.terms-link {
    color: #1657c5;
}

.error-message {
    color: #b71c1c; /* Darker red for better readability */
    font-size: 14px;
    margin-top: 10px;
    padding: 10px; /* Add some padding */
    border: 1px solid #f44336; /* Add a border matching the red tone */
    border-radius: 5px; /* Smoothen edges */
    background-color: #ffebee; /* Light red background for better contrast */
    font-weight: bold; /* Make text stand out */
    display: flex; /* Align icon and text */
    align-items: center; /* Center icon vertically */
    gap: 10px; /* Space between icon and text */
}


/* Improved textarea styling */
textarea#beautifierRequirements{
    width: 100%; /* Full width for a cleaner layout */
    height: 100px; /* Adjust height as needed */
    padding: 10px; /* Add padding for better usability */
    font-size: 16px; /* Increase font size for readability */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    outline: none; /* Remove default focus outline */
    resize: none; /* Prevent awkward resizing */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth focus effect */
    font-family: 'Arial', sans-serif; /* Clean font */
}

#beautifierURL{
    width: 100%; /* Full width for a cleaner layout */
    padding: 10px; /* Add padding for better usability */
    font-size: 16px; /* Increase font size for readability */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    outline: none; /* Remove default focus outline */
    resize: none; /* Prevent awkward resizing */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth focus effect */
    font-family: 'Arial', sans-serif; /* Clean font */
}
#beautifierURL::placeholder {
    color: rgba(0, 0, 0, 0.3); /* Very light gray */
    font-size: 14;
}


/* Focus effect for the textarea */
textarea#beautifierRequirements:focus {
    border-color: #3f51b5; /* Highlighted blue border on focus */
    box-shadow: 0 0 6px rgba(63, 81, 181, 0.3); /* Glow effect */
}
textarea#beautifierRequirements::placeholder {
    color: rgba(0, 0, 0, 0.2); /* Very light gray */
    font-size: 14;
}


#beautifierModalContent {
    width: 90%; /* Adapt to screen width */
    max-width: 30em; /* Desktop max width */
    min-width: 18em; /* Mobile min width */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the buttons */
}

@media (max-width: 480px) {
    #beautifierModalContent {
        width: 90%; /* Make modal fit smaller screens */
        min-width: 14em; /* Reduce min-width for better scaling */
    }

    .beautify-button {
        width: 18em; /* Ensure buttons fit within the modal */
        font-size: 14px; /* Slightly smaller text */
        padding: 8px 12px;
    }
}

/* Beautify Button Styles */
.beautify-button {
    width: 90%;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    height: 120px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    margin: 10px; /* Add spacing between buttons */
}

.beautify-button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.beautify-button:active {
    background-color: #004085;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Center the buttons within their container */
#beautifyOptions {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds space between buttons */
    margin-top: 20px;
}

#urlInputLayout {
    align-items: center;
    text-align: center;
}

#urlInputLayout label {
    width: 100%;
}


/* Button styling */
button#beautifyButton {
    width: 100%; /* Full width */
    padding: 10px 15px; /* Comfortable padding */
    font-size: 16px; /* Consistent font size */
    color: white; /* White text */
    background-color: #3f51b5; /* Primary blue color */
    border: none; /* No border */
    border-radius: 8px; /* Smooth edges */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth effects */
}

/* Hover effect for the button */
button#beautifyButton:hover {
    background-color: #303f9f; /* Darker blue on hover */
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Disabled button */
button#beautifyButton:disabled {
    background-color: #ccc; /* Gray background */
    cursor: not-allowed; /* Not-allowed cursor */
}


@keyframes smoothFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.input-error {
    border: 2px solid red !important;
    background-color: #ffe6e6 !important; /* Light red background */
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* Red glow effect */
    transition: all 0.3s ease-in-out; /* Smooth transition for the highlight */
}

.input-error:focus {
    outline: none; /* Remove default outline */
    border-color: #ff4d4d; /* Slightly brighter red when focused */
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.7); /* More intense glow when focused */
}

/* Modal Notification */
.notification-modal {
    position: fixed;
    left: 50%;
    top: 20%;
    transform: translate(-50%, 0);
    background-color: #1369CF;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 1000;
    color: white;
    text-align: center;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
}


/* Error state styling */
.notification-modal.error {
    background-color: red;
}

.popup {
    position: absolute;
    top: -80px;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    text-align: center;
    z-index: 200;
}

.popup-text {
    margin-bottom: 10px;
    font-size: 14px;
}

.levels-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.level-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.level-button:hover {
    background-color: #0e141b;
}

/* Container for "Скрыть контакты" */
.hide-contacts {
    align-items: center;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

/* Hide default checkbox */
.hide-contacts input[type="checkbox"] {
    display: none;
}

/* Custom checkbox style */
.hide-contacts .checkbox-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #007BFF; /* Use a color matching your theme */
    border-radius: 4px;
    background-color: #fff;
    margin-right: 8px;
    transition: all 0.3s ease;
}

/* Checked state styling */
.hide-contacts input[type="checkbox"]:checked + .checkbox-label::before {
    background-color: #007BFF; /* Checked state color */
    border-color: #007BFF;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.285 6.707l-10.664 10.666-4.615-4.616 1.415-1.414 3.2 3.199 9.249-9.249z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

/* Label text styling */
.hide-contacts .checkbox-label {
    width: 100%;
    line-height: 1; /* Reset line-height to remove excess spacing */
    margin-bottom: 5px;
}
@keyframes shine {
    0% {
        box-shadow: 0 0 5px rgba(63, 81, 181, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(63, 81, 181, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(63, 81, 181, 0.3);
    }
}




.arrow-left, .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem; /* Adjust size to match the new arrow */
    color: #fff;
    background: #1a1a1a; /* Clean, dark background for better contrast */
    border-radius: 50%; /* Circular shape */
    width: 50px; /* Slightly larger for balance */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    user-select: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.arrow-left {
    left: -3em;
}

.arrow-right {
    right: -3em; /* Positioned slightly further inside */
}

.arrow-left:hover, .arrow-right:hover {
    transform: translateY(-50%) scale(1.15); /* Slightly zoom on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
    background: #333; /* Darker background on hover */
}

/* Ensure the arrows are vertically and horizontally aligned inside the circle */
.arrow-left, .arrow-right {
    font-family: Arial, sans-serif; /* Ensure the arrow font matches the style */
    font-weight: bold; /* Make the arrow symbol stand out */
}

@media (max-width: 768px) {
    .arrow-left {
        left: 15px; /* Adjust for smaller screens if necessary */
        opacity: 0.7;
        width: 40px;
        height: 40px;
    }

    .arrow-right {
        right: 15px; /* Adjust for smaller screens if necessary */
        opacity: 0.7;
        width: 40px;
        height: 40px;

    }
}


.career__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.career__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    cursor: pointer;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.career__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.career__header {
    margin-bottom: 15px;
}

.career__title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin: 0;
}

.career__location {
    font-size: 16px;
    color: #777777;
    margin-top: 5px;
}

.career__body {
    margin-bottom: 20px;
}

.career__salary {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #28a745; /* Green color for salary */
    margin-bottom: 10px; /* Adds space between salary and progress bar */
}


.career__progress-container {
    position: relative;
    background-color: #f0f0f0;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px; /* Adjust space between progress bar and other elements if needed */
}

.career__progress-bar {
    background-color: #007bff;
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s;
}

.career__progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: black;

}

/* Modal container */
.vacancy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal dialog */
.vacancy-modal-dialog {
    background-color: #ffffff;
    width: 60%;
    height: 80%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Modal header */
.vacancy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #007bff;
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.vacancy-close-btn {
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    margin-top: -0.5em;
}

.vacancy-close-btn:hover {
    color: #ff0000;
}

/* Modal body with scrolling */
.vacancy-modal-body {
    padding: 20px;
    overflow-y: auto;
}

.vacancy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.vacancy-modal-body::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 4px;
}

.vacancy-modal-body::-webkit-scrollbar-thumb:hover {
    background-color: #aaaaaa;
}

/* Content styling */
.vacancy-details {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.vacancy-details .vacancy-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.vacancy-details .vacancy-info div {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.vacancy-details .vacancy-info div span {
    display: block;
    font-size: 14px;
    color: #555;
}

/* Section titles */
.vacancy-details h4 {
    color: #007bff;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.vacancy-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Links */
.vacancy-details a {
    color: #007bff;
    text-decoration: none;
}

.vacancy-details a:hover {
    text-decoration: underline;
}


/* Ensure the filter container aligns properly */
.career-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 1em;
}

/* Input box styling */
.career-filter-search {
    width: 100%;
}

.career-filter-search-input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s ease;
}
.career-filter-search-input::placeholder {
    opacity: 0.8;
}

.career-filter-search-input:focus {
    border-color: #007bff;
}

/* Fix checkbox visibility */
.career-filter-salary {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
}

/* Ensure checkbox is visible */
.career-filter-salary-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    appearance: auto; /* Reset browser default */
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
}

/* Ensure checkbox is clickable */
.career-filter-salary label {
    cursor: pointer;
}


.profile-title {
    display: flex;
    align-items: center; /* Align the heading and input vertically */
    gap: 15px; /* Space between the heading and the input */
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600; /* Keep the original font weight */
    font-size: 36px; /* Keep the original font size */
    line-height: 42px; /* Original line height */
    text-transform: uppercase; /* Original uppercase styling */
    color: #333333;
    text-align: left;
    padding: 100px 30px 40px; /* Keep original padding */
    box-sizing: border-box; /* Keep original box-sizing */
    background: #FFFFFF;
    border-radius: 10px 10px 0 0; /* Original border radius */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow for a clean look */
}

.profile-title input {
    flex: 1; /* Allow the input field to expand */
    font-size: 16px; /* Adjust input font size */
    padding: 10px 15px; /* Add padding inside the input */
    border: 1px solid #CCCCCC; /* Light gray border */
    border-radius: 6px; /* Rounded corners for input */
    outline: none; /* Remove focus outline */
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for hover/focus */
}

.profile-title input:focus {
    border-color: #1369CF; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Glow effect on focus */
}

.profile-title input::placeholder {
    color: #AAAAAA; /* Placeholder color */
}

@media (max-width: 768px) {
    .profile-title {
        display: block; /* Stack the text and input vertically */
        text-align: center; /* Center-align the heading for mobile */
        padding: 50px 20px; /* Adjust padding for mobile */
    }

    .profile-title input {
        display: block; /* Ensure the input spans the line */
        width: 100%; /* Take the full width */
        margin-top: 20px; /* Add space between the heading and the input */
        font-size: 16px; /* Mobile-friendly font size */
        padding: 10px 15px; /* Add padding inside the input */
        border: 1px solid #CCCCCC; /* Light gray border */
        border-radius: 6px; /* Rounded corners for input */
        outline: none; /* Remove focus outline */
        box-sizing: border-box; /* Ensure padding doesn't affect the width */
    }

    .profile-title input:focus {
        border-color: #007BFF; /* Highlight border on focus */
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Glow effect on focus */
    }
}

.arrow-down-collapse {
    font-size: 0.8em;
    color: #D3D3D3;
}


    /* Modal container */
    .course-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
      }
      
      /* Modal dialog */
      .course-modal-dialog {
        background: #fff;
        width: 80%;
        max-width: 900px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        animation: fadeInScale 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
      }
      
      /* Animation */
      @keyframes fadeInScale {
        0% {
          opacity: 0;
          transform: scale(0.7);
        }
        100% {
          opacity: 1;
          transform: scale(1);
        }
      }
      
      /* Modal header */
      .course-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        color: #fff;
        font-size: 1.5rem;
      }
      
      .course-modal-title {
        font-weight: bold;
      }
      
      /* Close button */
      .course-close-btn {
        font-size: 2rem;
        cursor: pointer;
        transition: color 0.2s;
      }
      
      .course-close-btn:hover {
        color: #ff6b6b;
      }
      
      
      /* Course details layout */
      .course-details {
        display: flex;
        flex-direction: row;
        width: 100%;
      }
      
      /* Photo cover */
      .course-photo {
        flex: 1;
        margin-right: 1.5rem;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
      }
      
      .course-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      
      /* Course info */
      .course-info {
        flex: 2;
        display: flex;
        flex-direction: column;
      }
      
      /* Meta info */
      .course-meta {
        position: relative;

        display: flex;
        gap: 1rem;
        font-size: 1.1rem;
        color: #555;
      }
      .course-info h2 {
        margin-bottom: 1em;
      }
      
      .course-meta div {
        top: 0;
        right: 0;      
        background: #f1f1f1;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        color: green;
      }

      .course-meta div strong {
        color: #333;
      }

      .course-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1em;
      }
      
      
      /* Course link */
      .course-link {
        color: #2575fc;
        text-decoration: none;
        font-weight: bold;
        margin-top: 0.5rem;
        margin-bottom: 1em;
      }
      
      .course-link:hover {
        text-decoration: underline;
      }
      
      /* Course description styling */
      .course-info h3 {
        margin: 0.5rem 0;
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 0.5em;
      }

      .course-info p {
        line-height: 1.5;
        color: #666;
      }
      
  
/* Container for all course cards */
.course__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    align-items: stretch; /* Ensures each grid item is the same height */
}

/* Individual card */
.course__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0; /* We'll let internal elements manage their own padding */
    height: 15em;
}

.course__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Image container to enforce consistent sizing */
.course__image-container {
    width: 100%;
    height: 200px; /* Fixed height to keep images uniform */
    overflow: hidden;
    border-radius: 12px 12px 0 0; /* Round top corners */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Actual image styling */
.course__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Header section (title, etc.) */
.course__header {
    text-align: center;
    margin: 15px 20px 10px 20px;
}

.course__title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin: 0;
}

/* Body content (optional short text, etc.) */
.course__body {
    margin: 10px 20px;
    padding: 0px 0px 15px 0px;
}

.loading-message .dots span {
    display: inline-block;
    margin-left: 5px;
    animation: dotMove 1.5s infinite;
  }
  
  .loading-message .dots span:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .loading-message .dots span:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes dotMove {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    50% {
      opacity: 1;
      transform: translateX(10px);
    }
    100% {
      opacity: 0;
      transform: translateX(0);
    }
  }

  
  

/* Footer (duration, etc.) */
.course__footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 20px 20px;
}

.course__duration {
    font-weight: 600;
    color: #777777;
}
  
  .course__price {
    font-weight: bold;
    color: green;
  }
  
  .course__duration {
    font-weight: bold;
    color: #555;
  }
  

  
  .course-details {
    width: 100%;
  }
  


  /* --- MODAL BODY LAYOUT --- */
.course-modal-body {
    display: flex;
    flex-direction: column; /* Keep course details on the left, carousel on the right */
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
    text-align: left;
    gap: 2rem; /* Space between details and carousel */
  }
  
  /* Tweak paragraph text inside the modal */
  .course-modal-body p {
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
  }
  
  /* --- CAROUSEL CONTAINER --- */
  #carouselContainer {
    flex: 1; /* Let it occupy remaining space */
    width: 100%;
    min-width: 400px;
  }
  
  /* --- CAROUSEL WRAPPER --- */
  .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  /* This container holds all slides and is centered vertically */
  .carousel-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  /* --- CAROUSEL SLIDES --- */
  .carousel-item {
    display: none; /* Hidden by default; JS sets the active one to 'flex' */
    width: 100%;
    justify-content: space-around;
    gap: 20px;
    animation: fadeInUp 0.5s ease; /* Slide-in animation */
  }
  
  /* Slide-in animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 10%, 0);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  /* --- INDIVIDUAL COURSE CARDS --- */
  .carousel-course {
    display: flex;               /* ADD THIS */
    flex-direction: column;      /* AND THIS */  
    flex: 0 0 30%;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: space-between;
  }
  
  .carousel-course img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  
  .carousel-course h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
  }
  
  .carousel-course p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    text-align: left;        /* or 'justify' if you want even edges */
    line-height: 1.5;        /* adjust as needed */
    white-space: normal;
    word-wrap: break-word;   /* helps prevent overflow */
  }
  
  .carousel-course a {
    display: inline-block;
    color: #fff;
    background: #0077ff;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: auto
  }
  
  .carousel-course a:hover {
    background: #0058cc;
  }
  
  /* Hover effect to "lift" the card */
  .carousel-course:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  /* --- ARROWS --- */
  .carousel-prev,
  .carousel-next {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2; /* Ensure arrows float above the slides */
  }
  
  .carousel-prev {
    left: 0;
  }
  
  .carousel-next {
    right: 0;
  }
  
  .carousel-prev:hover,
  .carousel-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
  }
  

  /* Center the radio group container */
.radio-group {
    text-align: center;
    margin-top: 1em;
  }
  
  /* Hide the native radio inputs */
  .radio-group input[type="radio"] {
    display: none;
  }
  
  /* Style the labels as large buttons */
  .radio-group label {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  
  .radio-group.small label {
    display: inline-block;
    padding: 4px 10px;
    margin: 7px;
    font-size: 12px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  
  /* Hover effect */
  .radio-group label:hover {
    background-color: #E0F0FF;
  }
  
  /* Style the selected (checked) button */
  .radio-group input[type="radio"]:checked + label {
    background-color: #007BFF;
    color: #fff;
  }
  
  .career-paths-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .career-paths-modal {
    background: #fff;
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-out;
  }
  .career-paths-modal-header {
    background: #2c3e50;
    color: #fff;
    padding: 16px;
    position: relative;
  }
  .career-paths-modal-header h2 {
    color: white;
    margin: 0;
    font-size: 24px;
  }
  .career-paths-modal-header p {
    margin: 8px 0 0;
    font-size: 14px;
  }
  .career-paths-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }
  .career-paths-modal-body {
    padding: 16px;
  }
  .career-paths-form-group {
    margin-bottom: 16px;
  }
  .career-paths-form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
  }
  .career-paths-form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .career-paths-modal-footer {
    padding: 16px;
    text-align: right;
    background: #f9f9f9;
  }
  .career-paths-submit {
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .career-paths-submit:hover {
    background: #34495e;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }


/* #course-dynamic-button {
  position: absolute;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.4);
}

#course-dynamic-button:hover {
  background-color: #218838;
  box-shadow: 0 6px 12px rgba(40, 167, 69, 0.6);
  animation: gentlePulse 1.5s infinite;
} */

@keyframes gentlePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
    color: #333;
  }
  
  /* Container for the entire role block */
  .role-container {
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
  }
  
  /* Role Title */
  .role-container h2 {
    margin-top: 0;
    font-size: 28px;
    color: #333;
  }
  
  /* Salary Buttons Container */
  .salary-container {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e5e7eb; /* subtle border */
    border-radius: 6px;
    background-color: #f9fafb;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 2rem 0;
    transition: box-shadow 0.2s ease;
  }
  
  .salary-container:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  }
  
  .salary-prefix {
    font-weight: 400;
    color: #666;
  }
  
  .salary-amount {
    font-weight: 600;
    color: #111;
  }
    
  /* Individual Salary Buttons */
  .salary-button {
    border: 1px solid #007BFF;
    background-color: #fff;
    color: #007BFF;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }
  .salary-button:hover {
    background-color: #007BFF;
    color: #fff;
  }
  
  /* Description */
  .description-container {
    margin-bottom: 20px;
  }
  .description-container h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
  }
  .description-container p {
    line-height: 1.6;
    margin: 0;
  }
  
  /* Key Skills */
  .key-skills-container {
    margin-top: 20px;
  }
  .key-skills-container h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .skill-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .skill-button {
    border: 1px solid #28a745;
    background-color: #fff;
    color: #28a745;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }
  .skill-button:hover {
    background-color: #28a745;
    color: #fff;
  }
  
  .salary-button.selected {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
  }
  
  .career-paths-form-group select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
    appearance: none; /* Remove default arrow in modern browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  .career-paths-form-group select:focus {
    border-color: #666;
    outline: none;
  }
  
  .inline-fields {
    gap: 20px; /* adjust spacing as needed */
  }
  .inline-fields label {
    display: flex;
    flex-direction: column;
  }


.career-paths-notify-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: career-paths-notify-fadeIn 0.5s ease-in-out;
}

.career-paths-notify-wrapper {
    position: relative;
    width: 600px;
    height: 500px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career-paths-notify-galaxy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.career-paths-notify-star-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: career-paths-notify-twinkle 5s infinite linear;
}

.career-paths-notify-planet {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    box-shadow: 0 0 20px #ff6b6b;
    animation: career-paths-notify-orbit 10s infinite linear;
}

.career-paths-notify-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.career-paths-notify-title {
    color: white;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: career-paths-notify-pulse 2s infinite;
}

.career-paths-notify-subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.career-paths-notify-path-button {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    animation: career-paths-notify-glowButton 2s infinite alternate;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

}

.career-paths-notify-path-button:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.beautify-icon:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.career-paths-notify-steps {
    list-style: none;
    padding: 0;
    text-align: left;
}

.career-paths-notify-step {
    font-size: 1.1em;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    opacity: 0;
    animation: career-paths-notify-slideIn 0.5s forwards;
}

.career-paths-notify-step::before {
    content: "⭐";
    position: absolute;
    left: 0;
    color: #ffeb3b;
    animation: career-paths-notify-glow 1.5s infinite alternate;
}

.career-paths-notify-step:nth-child(1) { animation-delay: 0.2s; }
.career-paths-notify-step:nth-child(2) { animation-delay: 0.4s; }
.career-paths-notify-step:nth-child(3) { animation-delay: 0.6s; }
.career-paths-notify-step:nth-child(4) { animation-delay: 0.8s; }
.career-paths-notify-step:nth-child(5) { animation-delay: 1.0s; }

.career-paths-notify-close {
    background: #ff6b6b;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.career-paths-notify-close:hover {
    transform: scale(1.1);
    background: #ff8787;
}

@keyframes career-paths-notify-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes career-paths-notify-twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes career-paths-notify-orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes career-paths-notify-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes career-paths-notify-slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes career-paths-notify-glow {
    from { text-shadow: 0 0 5px #ffeb3b; }
    to { text-shadow: 0 0 15px #ffeb3b, 0 0 30px #ffeb3b; }
}

@keyframes career-paths-notify-glowButton {
    from { box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5); }
    to { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.8); }
}

@media (max-width: 600px) {
    .career-paths-notify-path-button {
        padding: 6px 12px; /* Reduced padding for smaller screens */
        font-size: 0.9em; /* Smaller text for mobile */
        border-radius: 15px; /* Slightly smaller radius */
        box-shadow: 0 3px 10px rgba(255, 107, 107, 0.5); /* Lighter shadow */
        animation: career-paths-notify-glowButton 2s infinite alternate; /* Keep glow effect */
    }

    .career-paths-notify-wrapper {
        width: 90%; /* Full width adjustment for mobile */
        height: 400px; /* Reduced height */
    }

    .career-paths-notify-content {
        padding: 20px; /* Reduced padding */
    }

    .career-paths-notify-title {
        font-size: 2em; /* Slightly smaller title */
    }

    .career-paths-notify-subtitle {
        font-size: 1em; /* Adjusted subtitle size */
    }

    .career-paths-notify-step {
        font-size: 1em; /* Adjusted step text size */
        margin: 10px 0; /* Reduced margin */
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.which-skills-missing {
    background: linear-gradient(135deg, #f5f7fa, #e6ecf5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-family: 'Arial', sans-serif;
    margin: 20px 0;
}

h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Button Styling (Aligned with Page) */
.analyze-button-container {
    margin-bottom: 20px;
    justify-content: center; /* Centers the button horizontally */
    display: flex;
}

.analyze-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00c853, #00ff88);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.analyze-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.5);
}

.analyze-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.analyze-btn:disabled:hover::after {
    content: attr(title);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-right: 8px;
}

.btn-icon {
    display: flex;
    align-items: center;
}

/* Loading Animation */
.skills-content {
    min-height: 100px;
}

#loading-text {
    font-size: 18px; /* Slightly larger for better readability */
    font-family: 'Inter', 'Roboto', sans-serif; /* Modern font stack */
    font-weight: 500; /* Medium weight for emphasis */
    background: linear-gradient(90deg, #4a90e2, #9013fe); /* Gradient color */
    -webkit-background-clip: text; /* Clip the gradient to the text */
    background-clip: text;
    color: transparent; /* Make the text transparent to show the gradient */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 0;
    opacity: 1;
    transition: opacity 1.5s ease, transform 0.5s ease; /* Add transform to transition */
    animation: pulse 2s infinite ease-in-out; /* Add a pulsing animation */
}

/* Pulsing animation for the text */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}
.loading-animation {
    display: flex;
    flex-direction: row; /* This is the key change */
    align-items: center;
    gap: 4px;
    justify-content: center; /* Center the text and dots horizontally */
    width: 100%; /* Ensure it takes the full width of the parent */
}

.loading-dots {
    display: flex;
    gap: 3px;
    font-size: 1em;
}

.loading-dots span {
    font-size: 25px; /* Increase this to make the dots bigger */
    color: #00c853;
    animation: dots 1.5s infinite;
    display: inline;
    line-height: 1;
}
.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dots {
    0%, 20% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    80%, 100% {
        opacity: 0.3;
    }
}


/* Skills Display */
.skills-result {
    margin-top: 20px;
    animation: splash 0.5s ease-out;
}

@keyframes splash {
    0% {
        opacity: 0;
        transform: scale(0.95);
        box-shadow: 0 0 0 rgba(0, 200, 83, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 200, 83, 0);
    }
}

.critical-skills, .basic-skills {
    margin-bottom: 20px;
    text-align: left;
}

.critical-skills h4, .basic-skills h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.critical-skills h4 {
    color: #d32f2f;
}

.basic-skills h4 {
    color: #1976d2;
}

.critical-skills ul, .basic-skills ul {
    list-style: none;
    padding: 0;
}

.critical-skills li, .basic-skills li {
    background: #fff;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #333;
}

.critical-skills li {
    border-left: 4px solid #d32f2f;
}

.basic-skills li {
    border-left: 4px solid #1976d2;
}
.missing-skills-subscription-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85); /* Deep navy with transparency for depth */
    backdrop-filter: blur(8px); /* Enhanced blur for a premium glass effect */
    animation: fadeIn 0.4s ease-out;
}

.missing-skills-subscription-content {
    position: relative;
    background: linear-gradient(135deg, #00c853 0%, #00ff88 100%);
    margin: 10% auto; /* Adjusted margin for better vertical centering */
    padding: 40px; /* More padding for spaciousness */
    border-radius: 24px; /* Softer, modern radius */
    width: 90%;
    max-width: 520px; /* Slightly wider for better content fit */
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2); /* Green-tinted shadow + subtle depth */
    color: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for refinement */
    animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Smoother entrance */
}

.missing-skills-subscription-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.missing-skills-subscription-close:hover {
    transform: scale(1.15) rotate(90deg);
    color: #b2ffdb; /* Light green accent for hover */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.missing-skills-subscription-header h2 {
    margin: 0 0 15px;
    font-size: 32px; /* Slightly larger for impact */
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #ffffff 0%, #b2ffdb 100%); /* White to light green gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px; /* Better spacing for elegance */
    text-shadow: 0 2px 10px rgba(0, 200, 83, 0.3); /* Subtle glow */
}

.missing-skills-subscription-body {
    margin: 25px 0;
    text-align: center;
    font-size: 17px; /* Slightly larger for readability */
    line-height: 1.6; /* Better line spacing */
    color: rgba(255, 255, 255, 0.95); /* Softer white for contrast */
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle text depth */
}

.missing-skills-subscription-footer {
    text-align: center;
    padding-top: 10px;
}

.missing-skills-subscription-button {
    display: inline-block;
    padding: 14px 35px; /* Larger for better clickability */
    background: linear-gradient(45deg, #ffffff 0%, #f0fff8 100%); /* White to very light green */
    color: #00c853; /* Darker green for text */
    text-decoration: none;
    border-radius: 50px; /* More pronounced pill shape */
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth, premium transition */
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2); /* Subtle border */
    position: relative;
    overflow: hidden;
}

.missing-skills-subscription-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(178, 255, 219, 0.3); /* Light green ripple */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.missing-skills-subscription-button:hover::after {
    width: 300px;
    height: 300px;
}

.missing-skills-subscription-button:hover {
    background: linear-gradient(45deg, #f0fff8 0%, #ffffff 100%); /* Reverse gradient on hover */
    color: #009f41; /* Slightly darker green for contrast */
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.missing-skills-subscription-button span {
    position: relative;
    z-index: 1; /* Ensure text stays above ripple */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* Tab Navigation (Desktop Default) */
.editor__item__tabs {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allows tabs to wrap if needed on desktop */
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 2px;
}

/* Style for each tab (Desktop Default) */
.editor__item__tab {
    flex: 1; /* Tabs share the available space equally */
    padding: 10px 20px;
    background: #f5f5f5;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap !important; /* Ensures text stays on a single line */
    min-width: fit-content; /* Ensures the tab is at least as wide as its content */
}

/* Hover state for desktop */
.editor__item__tab:hover {
    background: #e0e0e0;
}

/* Active tab state */
.editor__item__tab.active {
    background: #fff;
    border-bottom: 2px solid #007bff;
    color: #007bff;
    font-weight: bold;
}

/* Mobile-specific adjustments (below 768px) */
@media (max-width: 768px) {
    .editor__item__tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 10px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .editor__item__tabs::-webkit-scrollbar {
        display: none;
    }

    .editor__item__tabs {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .editor__item__tab {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 14px;
        min-width: 120px;
    }
}

/* Section Visibility */
.editor__item__select {
    display: none;
}

.editor__item__select[data-tab-content] {
    display: none;
}

.editor__item__select[data-tab-content][style*="display: block"] {
    display: block;
}

/* Ensure existing styles for form fields are preserved */
.editor__item__select__box {
    width: 100%;
}

.editor__widget-title {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 10px;
    display: block;
}

/* Target the inline-fields container with higher specificity */
.editor__item__select__box__education__form .inline-fields {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping if the container is too narrow */
    align-items: flex-start; /* Aligns items at the top */
    margin-top: 10px;
    width: 100%; /* Ensures the container takes the full width */
    box-sizing: border-box;
}

/* Style the labels inside inline-fields */
.editor__item__select__box__education__form .inline-fields label {
    flex: 1 1 200px; /* Each label takes equal space, with a minimum width of 150px */
    min-width: 180px; /* Fallback for older browsers */
    max-width: 250px; /* Prevents the selects from becoming too wide */
    margin: 0; /* Removes any default margins that might cause issues */
}

/* Style the spans (labels) above the selects */
.editor__item__select__box__education__form .inline-fields label span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

/* Style the select elements */
.editor__item__select__box__education__form .inline-fields select {
    width: 100%; /* Takes the full width of the label container */
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
}

/* Add hover/focus states for better UX */
.editor__item__select__box__education__form .inline-fields select:hover,
.editor__item__select__box__education__form .inline-fields select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Ensure the parent container doesn't constrain the layout */
.editor__item__select__box__education__form {
    width: 100%;
    max-width: none; /* Prevents any max-width constraints */
    box-sizing: border-box;
}

/* Fallback for smaller screens */
@media (max-width: 600px) {
    .editor__item__select__box__education__form .inline-fields {
        flex-direction: column;
        gap: 15px;
    }
    .editor__item__select__box__education__form .inline-fields label {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: none;
        margin-bottom: 20px;
    }


    .editor__item__select__box__education__form .inline-fields {
        display: block;
        flex-wrap: wrap; /* Allows wrapping if the container is too narrow */
        align-items: flex-start; /* Aligns items at the top */
        margin-top: 10px;
        width: 100%; /* Ensures the container takes the full width */
        box-sizing: border-box;
    }
    .inline-fields label {
        margin-bottom: 10px;
    }
    
}

.editor__item__tab[data-tab="skills-languages"] {
    font-size: 16px;
    padding: 10px 15px;
}

/* Container for the navigation buttons */
.tag-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
}

/* Arrow buttons */
.tag-navigation-arrow {
    width: 48px; /* Slightly wider than before (was 40px) */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px; /* Slightly rounded corners for a square look */
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tag-navigation-arrow:hover {
    background-color: #e0e0e0;
}

/* Container for action buttons (save and notify) */
.tag-navigation-actions {
    display: flex;
    gap: 10px;
}

/* Save button */
.tag-navigation-submit {
    width: 100%; /* Adjust width to fit text */
    height: 40px;
    padding: 0 16px; /* Add padding for text */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    border-radius: 10px; /* Match the notify button's rounded style */
    font-size: 16px; /* Adjust font size for text */
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: transform 0.5s ease, background-color 0.2s ease;
}

@media (max-width: 768px) {
    /* Container for the navigation buttons */
    .tag-navigation-container {
        gap: 8px; /* Reduce gap for mobile */
        padding: 8px 0; /* Slightly less padding for mobile */
    }

    /* Arrow buttons (for reference, ensuring consistency) */
    .tag-navigation-arrow {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        font-size: 16px; /* Slightly smaller arrows for mobile */
    }

    /* Container for action buttons (save and notify) */
    .tag-navigation-actions {
        gap: 8px; /* Reduce gap between save and notify for mobile */
    }

    /* Save button */
    .tag-navigation-submit {
        height: 48px; /* Match the height of the arrow buttons */
        padding: 0 12px; /* Slightly less padding for mobile */
        border-radius: 15px; /* Slightly less rounded for a cleaner mobile look */
        font-size: 14px; /* Smaller font for mobile */
        font-weight: bold;
        background-color: #4CAF50;
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .tag-navigation-submit:hover {
        background-color: #45a049;
        transform: scale(1.02); /* Slightly smaller scale for mobile */
    }

    /* Notify button */
    .career-paths-notify-path-button {
        height: 48px; /* Match the height of the arrow buttons */
        padding: 0 12px; /* Adjust padding for mobile */
        border-radius: 12px; /* Match the save button's rounding */
        font-size: 14px; /* Smaller font for mobile */
        font-weight: bold;
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        color: #fff;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
        animation: career-paths-notify-glowButton 2s infinite alternate;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .career-paths-notify-path-button:hover {
        transform: scale(1.02); /* Slightly smaller scale for mobile */
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.7);
    }
}

.tag-navigation-submit:hover {
    background-color: #45a049;
    transition: 0.4s;
    transform: scale(1.05);
}

.career-paths-notify-path-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.7);
}

/* Assuming this animation exists elsewhere in your CSS */
@keyframes career-paths-notify-glowButton {
    0% { box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5); }
    100% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.8); }
}

/* Disabled state for arrow buttons */
.tag-navigation-arrow:disabled {
    background: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

/* Style for the submit button */
.tag-navigation-submit {
    flex: 1; /* Takes an equal share of the width */
    background: #007bff;
    border: none;
    border-radius: 10px;
    padding: 12px 15px; /* Consistent padding */
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover state for submit button */
.tag-navigation-submit:hover {
    background: #0056b3;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tag-navigation-container {
        gap: 8px; /* Slightly smaller gap on mobile */
        padding: 8px 0;
    }

    .tag-navigation-arrow {
        padding: 10px 12px; /* Slightly smaller padding for mobile */
        font-size: 16px;
    }

    .tag-navigation-submit {
        padding: 10px 12px; /* Slightly smaller padding for mobile */
        font-size: 14px;
    }
}


.subscription-notify {
    display: none;
    position: fixed;
    top: 30px;
    left: 50%;
    flex-direction: column; /* Stack message and buttons vertically */
    align-items: center; /* Center content */
    background: linear-gradient(135deg, #2a5298, #ff6b6b); /* Gradient background */
    color: #fff;
    padding: 15px 25px; /* Slightly reduced padding for simplicity */
    border-radius: 12px; /* Softer corners */
    border-image: linear-gradient(45deg, #4ecdc4, #ff9966) 1; /* Gradient border */
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3); /* Softer shadow */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    opacity: 0;
    transform: translate(-50%, -20px); /* Keep horizontal centering */
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
    z-index: 1000;
    animation: subscription-notify-float 3s infinite ease-in-out; /* Subtle floating animation */
    line-height: 1.8;
}
@media (max-width: 768px) {
    .subscription-notify {
        width: 90%;
        transform: translateY(-20px); /* Remove horizontal centering, keep vertical offset */
    }
}

.subscription-message {
    font-size: 1em;
    margin: 0; /* Ensure no extra margin */
}

.subscription-notify-link {
    display: inline-block; /* Make it behave like a button */
    padding: 8px 16px; /* Padding for a button-like feel */
    background: #007bff; /* Gradient background matching the notification’s border */
    color: #fff; /* White text for contrast */
    text-decoration: none; /* Remove underline */
    font-weight: 600; /* Bold text */
    font-size: 0.9em; /* Slightly smaller font for balance */
    border-radius: 8px; /* Rounded corners */
    border: 1px solid transparent; /* Transparent border for hover effect */
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.2); /* Subtle shadow */
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.subscription-notify-link:hover {
    background: #7692FF; /* Slightly darker gradient on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3); /* Enhanced shadow on hover */
    border-color: #fff; /* White border on hover for contrast */
}

/* Keyframes for the floating animation (renamed to match the new class) */
@keyframes subscription-notify-float {
    0% {
        transform: translate(-50%, -20px);
    }
    50% {
        transform: translate(-50%, -10px);
    }
    100% {
        transform: translate(-50%, -20px);
    }
}

.from-document-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
  }
  
  .from-document-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	animation: fadeIn 0.3s ease;
  }
  
  .from-document-content {
	position: relative;
	background: #fff;
	padding: 2rem;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	animation: slideUp 0.4s ease;
	text-align: center;
  }
  
  .from-document-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background: transparent;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
  }
  
  .from-document-header {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	color: #333;
  }
  
  .from-document-description {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1.5rem;
  }
  
  .from-document-file-label {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	background: #1e40af;
	color: #fff;
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 1rem;
	transition: background 0.3s;
  }
  .from-document-file-label:hover {
	background: #1c3aa0;
  }
  
  .from-document-file-input {
	display: none;
  }
  
  .from-document-submit {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background: #10b981;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: transform 0.2s;
  }
  .from-document-submit:hover {
	transform: translateY(-2px);
  }
  
  @keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  
  @keyframes slideUp {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
  }
  
/* -------- Modal Backdrop & Container -------- */
.from-role-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.from-role-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}
.from-role-content {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 90%; max-width: 420px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.4s ease;
}

/* -------- Close Button -------- */
.from-role-close {
    position: absolute;
    top: 0.5rem; right: 0.5rem;
    background: none; border: none;
    font-size: 1.5rem; cursor: pointer;
}

/* -------- Header & Form -------- */
.from-role-header {
    margin-bottom: 1.25rem;
    font-size: 1.5rem; color: #333;
    text-align: center;
}
.from-role-form {
    display: flex;
    flex-direction: column;
}
.from-role-field-label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem; color: #555;
}

/* -------- Submit Button -------- */
.from-role-submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.6rem;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s;
}

.from-role-submit.animate {
    animation: pulse 1.5s infinite ease-in-out;
}

.from-role-submit:disabled {
    background: #7dd3b5;
    cursor: not-allowed;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.from-role-submit:hover {
    transform: translateY(-2px);
}

/* -------- Custom Dropdown Base -------- */
.custom-dropdown {
    position: relative;
    user-select: none;
    margin-bottom: 1rem;
    outline: none;
}
.custom-dropdown:focus .custom-dropdown__trigger {
    border-color: #1e40af;
}

/* Trigger (now contains search input for role dropdown) */
.custom-dropdown__trigger {
    display: block;
    padding: 5px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;

    position: relative;
    transition: border-color 0.2s;
}
/* Arrow icon */
.custom-dropdown__trigger::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-top-color: #666;
    pointer-events: none;
}

/* Search Input inside Trigger */
.custom-dropdown__search {
    width: 100%;
    padding: 0.6rem 2rem 0.6rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}
.custom-dropdown__search::placeholder {
    color: #666;
}
.custom-dropdown__search:focus {
    border-color: #1e40af;
}

/* Options list */
.custom-dropdown__options {
    list-style: none;
    margin: 0; padding: 0;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 16em;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

/* Show options when open */
.custom-dropdown.open .custom-dropdown__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual option */
.custom-dropdown__option {
    margin: 0;
    padding: 0.6rem 1rem;
    list-style: none;
    cursor: pointer;
}
.custom-dropdown__option:hover {
    background: #f3f4f6;
}

/* Hide options that don't match search */
.custom-dropdown__option.hidden {
    display: none;
}

/* -------- Animations -------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}  

  /* ===========================
   Premium Chat Modal Styles
   =========================== */

/* Modal backdrop & centering */
.ai-agent-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .ai-agent-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease;
  }
  
  /* Modal card */
  .ai-agent-content {
    position: relative;
    width: 90%; max-width: 420px;
    height: 80%; max-height: 600px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: slideUp 0.4s ease;
  }
  
  /* Header & close */
  .ai-agent-header {
    margin: 0;
    padding: 1rem 3rem 1rem 1rem;
    background: #4f46e5;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .ai-agent-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .ai-agent-close:hover {
    background: rgba(255,255,255,0.4);
  }
  
  /* Chat area */
  .ai-agent-chat {
    flex: 1;
    padding: 1rem;
    background: #f3f4f6;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  /* Custom scrollbar */
  .ai-agent-chat::-webkit-scrollbar {
    width: 6px;
  }
  .ai-agent-chat::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 3px;
  }
  .ai-agent-chat::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 3px;
  }
  .ai-agent-chat::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
  }
  
  /* Message bubbles */
  .ai-agent-message {
    position: relative;
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .ai-agent-bubble--ai {
    align-self: flex-start;
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .ai-agent-bubble--ai::before {
    content: '';
    position: absolute;
    top: 12px; left: -8px;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #ffffff;
  }
  .ai-agent-bubble--user {
    align-self: flex-end;
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .ai-agent-bubble--user::after {
    content: '';
    position: absolute;
    top: 12px; right: -8px;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #4f46e5;
  }
  
  /* Input area */
  .ai-agent-input-container {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
  }
  .ai-agent-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .ai-agent-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.2);
  }
  .ai-agent-send {
    margin-left: 0.5rem;
    width: 44px; height: 44px;
    border: none;
    border-radius: 50%;
    background: #4f46e5;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .ai-agent-send:hover {
    background: #4338ca;
    transform: scale(1.05);
  }
  .ai-agent-send:active {
    transform: scale(0.95);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);      opacity: 1; }
  }
  
  .ai-agent-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
  }
  
  .ai-agent-loading-dot {
    width: 8px;
    height: 8px;
    background-color: #333;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out;
  }
  
  .ai-agent-loading-dot:nth-child(2) {
    animation-delay: -0.32s;
  }
  
  .ai-agent-loading-dot:nth-child(3) {
    animation-delay: -0.16s;
  }
  
  @keyframes bounce {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1);
    }
  }

/* Overlay for blurring and darkening the background */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1.5px);
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
  }
  
  #overlay.active {
    display: block;
    opacity: 1;
  }
  
  /* Highlighted block styling */
  #create-resume-options {
    position: relative;
    width: 32%;
    height: 33em;
    background: #ffffff;
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease-in-out;
    z-index: 1002; /* Ensure it stays above the overlay */
  }
  
  #create-resume-options.highlighted {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(19, 105, 207, 0.3); /* Neon green glow */
  }
  
  /* Guidance message with luxurious design */
  #guidance-message {
    position: fixed; /* Changed to fixed to position relative to viewport */
    top: 20%; /* Position it above the block, adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background: #1369CF;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 1003; /* Above the highlighted block */
    box-shadow: 0 15px 40px rgba(19, 105, 207, 0.5); /* Neon green glow */
    animation: float 2s infinite ease-in-out;
    display: none;
    white-space: nowrap; /* Prevent text wrapping */
  }
  
  #guidance-message.active {
    display: block !important; /* Ensure it overrides any other display rules */
  }
  
  /* Animation for fade-in effect */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Animation for floating guidance message */
  @keyframes float {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0); }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #create-resume-options {
      width: 90%;
      height: auto;
      padding: 15px;
    }
    #guidance-message {
      font-size: 14px;
      top: 10%; /* Adjust for smaller screens */
      padding: 8px 15px;
    }
  }

  .loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  #submitRoleBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  #submitResumeBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
