/* Minification failed. Returning unminified contents.
(36,28): run-time error CSS1039: Token not allowed after unary operator: '-popupBg'
(52,28): run-time error CSS1039: Token not allowed after unary operator: '-popupBg'
(58,17): run-time error CSS1039: Token not allowed after unary operator: '-headingColor'
(91,21): run-time error CSS1039: Token not allowed after unary operator: '-FontSize16'
(160,28): run-time error CSS1039: Token not allowed after unary operator: '-textlighter'
(171,32): run-time error CSS1039: Token not allowed after unary operator: '-textlighter'
(193,21): run-time error CSS1039: Token not allowed after unary operator: '-FontSize16'
(196,28): run-time error CSS1039: Token not allowed after unary operator: '-bodyBg'
 */

button #openPopup {
    position: absolute;
    top: 0px;
    right: -32%;
}

.clearfix {
    clear: both;
}

.hidePopup {
    display: block;
}

.halfInputBox {
    display: block;
}

.overlay-bg {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    z-index: 99999;
    top: 0;
}

.popup-window {
    max-width: 457px;
    margin: auto;
    position: relative;
    top: 150px;
    background-color: var(--popupBg);
    height: auto;
    max-height: 680px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-150%);
    transition: transform 0.5s ease-in-out, opacity 0.1s ease-in-out;
}

    .popup-window.show {
        opacity: 1;
        transform: translateY(0);
    }

.popup-header {
    text-align: center;
    background-color: var(--popupBg);
  /*  padding: 10px;
    height: 60px;*/
    line-height: 20px;
    font-size: 18px;
    font-family: 'open sans', sans-serif;
    color: var(--headingColor);
    font-weight: 600;
    box-sizing: border-box;
}

.popup-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0px;
}

    .popup-window .inputBox, .popup-wrap #skill, .popup-wrap #Jlocation{
        padding: 0px 15px;
        margin: 0px;
    }

     #Jtitle .rowForm{
        padding:0px !important;
    }

    .popup-wrap #Workexp .rowForm {
        padding: 0px !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .popup-window .rowForm span {
        margin-left: 16px;
    }

.lagendContent label{
    font-size: var(--FontSize16);
}

.lagendContent .LabelClass {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-close::before, .icon-close::after {
    content: "";
    display: block;
    position: absolute;
    top: 28px;
    right: 24px;
    background-color: #ffffff;
    width: 20px;
    height: 3px;
    border-radius: 2px;
}

.icon-close::before {
    transform: rotate(45deg);
}

.icon-close::after {
    transform: rotate(-45deg);
}

.icon-close:hover::before, .icon-close:hover::after {
    background-color: #F5F5F5;
}

.popup-body {
    padding: 0;
    height: auto;
    max-height: 620px;
    box-sizing: border-box;
}

.popup-window .commonBuleBtn {
    margin-bottom: 40px;
}


@media(min-height:600px) and (max-height:769px) {
    .popup-body {
        max-height: 76vh;
    }
}

@media(max-width:1023px) {
    .popup-window {
        width: 90% !important;
        max-height: 80%;
    }

    .popup-body {
        max-height: 70vh;
    }
}

.popup-footer {
    width: 100%;
    text-align: center;
    /*padding: 10px 30px 10px;*/
}

.btn-success {
    background-color: var(--textlighter);
    color: #fff;
    padding: 5px 20px;
    display: inline-block;
    margin-top: 5px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-success:hover {
        background-color: var(--textlighter);
        color: #fff;
    }

.radio-container {
    display: flex;
    justify-content: space-evenly;
   /* background: var(--bodyBg);*/
   /* padding: 16px;*/
    border-radius: 5px;
}

.lagendContent {
    display: flex;
    justify-content: space-evenly;
    border-radius: 5px;
}

.rowForm {
    width: 100%;
    padding: 5px 0;
    float: left;
    font-size: var(--FontSize16);
}
.lagendBox {
    background-color: var(--bodyBg);
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    margin-top: 5px;
}


/*pop up close*/



