﻿/* ai Banner Css */

.container {
    width: 859px;
    height: 62px;
    background-color: #F6F6F6;
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    display: flex;
    border-radius: 8px;
    justify-content: space-between;
    padding: 0 16px 0 15px;
    margin: auto;
    box-sizing: border-box;
    cursor: pointer;
    /*animation: borderFade 2.5s linear forwards ;*/
}

.small-mark {
    background-color: #663bdf;
    color: white;
    font: normal normal normal 12px/14px Open Sans Hebrew;
    position: absolute;
    top: -20px;
    left: -28px;
    transform: rotate(-45deg);
    width: 65px;
    display: flex;
    justify-content: space-around;
    height: 50px;
    align-items: end;
}

.small-mark>p{
    padding:0;
    margin:0 0 4px 0;
}

.ai-banner-employer{
    cursor:pointer;
}

.custom-button {
    background: #FF5D00 0% 0% no-repeat padding-box;
    border-radius: 28px;
    text-align: right;
    font-family: 'Open Sans Hebrew Bold';
    letter-spacing: 0.32px;
    color: #FFFFFF;
    border: none;
    /* padding: 10px 12px; */
    width: 194px;
    height: 40px;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer;
    box-sizing: border-box;
    direction: ltr;
}

.custom-button:disabled {
    cursor:default;
}

.custom-button:hover {
    opacity: 0.9;
}

    .custom-button > p {
        letter-spacing: 0px;
        color: #FFFFFF;
        font-size: 15px;
        font-weight: bold;
        width: 141px;
        margin-left: 6px;
    }

    .custom-button > img {
        height: 24px;
        margin-left: 4px;
    }

.text-center {
    display: flex;
    align-items: center;
    padding: 16px 9px 16px 89px;
    direction: ltr;
    font: normal normal normal 15px/16px Open Sans Hebrew;
    letter-spacing: 0px;
    color: #606060;
}

.centered-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot {
    width: 112px;
    height: 112px;
    position: absolute;
    bottom: 0;
    right: -10px;
    z-index: 1;
}

#hiAiIcon {
margin-right:20px;
}

.aiBanner {
    display: flex;
    margin: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 3;
    position: relative;
}

/* Dialog */
.dialog {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none !important;
    margin: 0;
    padding: 20px !important;
}

    .dialog::backdrop {
        background-color: #0000002b;
    }

.dialog__container {
    max-width: 978px;
    max-height: 812px;
    background: white;
    box-shadow: 0px 3px 60px #33333373;
    border-radius: 24px;
    position: relative;
    width: 90%;
    height: 90%;
    padding: 6px;
    box-sizing: border-box;
}

.dialog_centering {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

dialog[open] {
    animation: FadeIn 0.5s ease normal;
}

@keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.closeIcon {
    position: absolute;
    padding: 11px;
    border-radius: 24px;
    left: 16px;
    top: 16px;
    width: 24px;
    height: 24px;
}

.closeIcon:hover {
    background: #f5f6f8;
    cursor:pointer;
}

.background-focus-banner {
    background: black;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    background: #363B48 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    border: 1px solid #707070;
    opacity: 0.61;
}

.banner_wrap {
    z-index: 3;
    position: relative;
}

.close_banner {
    position: absolute;
    right: 24px;
    top: -26px;
    z-index: 4;
    cursor:pointer;
    width:20px;
}

.arrow_Banner {
    position: absolute;
    top: -85px;
    left: 110px;
}

/*animation*/
@keyframes borderFade {
    0% {
        border: 2px solid #AAAAAA;
    }
    25% {
        border: 2px solid transparent; 
    }

    75% {
        border: 2px solid #AAAAAA;
    }

    100% {
        border: 2px solid transparent;
    }

}

