@font-face {
    font-family: 'Yekan';
    src: url( '../fonts/Yekan.eot' );
    src: url( '../fonts/Yekan.eot?#iefix' ) format( 'embedded-opentype' ),
    url( '../fonts/Yekan.woff2' ) format( 'woff2' ),
    url( '../fonts/Yekan.woff' ) format( 'woff' ),
    url( '../fonts/Yekan.ttf' ) format( 'truetype' ),
    url( '../fonts/Yekan.svg#Yekan' ) format( 'svg' );
    font-weight: normal;
    font-style: normal;
}
.nik-container {
    *{
        box-sizing:border-box;
        font-family:Yekan,sans-serif;

    }
    .nik-container > *, .nik-container h1, .nik-container h2, .nik-container h3, .nik-container h4, .nik-container h5, .nik-container h6 {
        font-family: Yekan,sans-serif;
    }

    .nik-container{
        display: block;
        max-width: 100% !important;
    }

    input:not([type="radio"],[type="checkbox"],[type="file"]),textarea{
        border-radius:6px;
        width:100%;
        max-width:100%;
        min-height:50px;
        height:50px;
        margin:0 0 .4em;
        padding:0.375rem 0.75rem;
        font-size:1rem;
    }
    .nik-container >div{
        margin:0.4em 0;

    }
    .nik-container >div:not(.container-radio){
        display: flex;
        flex-flow: wrap column;
    }

    small{
        display:block
    }
    label{
        display:block;
        margin:0.4em 0;
    }
    .radio-label{
        font-weight: 400 !important;
        display:inline-flex;
        margin:0 0 0 1em
    }
    .radio-label input{
        height:18px;
        width:18px;
    }
    .button-file {
        position: relative;
        margin:0.4em 0;
    }

    .button-file span {
        position: relative;
        z-index: 0;
        display: inline-block;
        cursor: pointer;
        border-radius:6px;
        background: #fff;
        padding:0.375rem 0.75rem;
        font-size:1rem
    }
    input[type="file"]{
        display: inline-block;
        position: absolute;
        z-index: 1;
        height: 100%;
        top: 0;
        right: 0;
        opacity: 0;
        cursor: pointer;
        direction:ltr;
        width:177px

    }
    .submit{
        grid-column: span 2;
        margin:2em 0!important;
        flex-direction: row-reverse !important;
    }
    .nik-container input[type="submit"]{
        width:100%;
        cursor: pointer;
        color: #fff;
        border-radius:6px;
        padding:0.375rem 0.75rem;
        font-size:1rem
    }
    input:focus,textarea:focus{
        outline:none!important
    }
    textarea{
        height:6em;
    }
    input#file-upload-button{
        display:none
    }
    .nik-container .invalid .field-title {
        color: #b90000;
        font-weight: 600;
    }

    /*Select Box CSS*/
    .select-menu {
        max-width: 100%;
        width: 100%;
        position: relative;
    }
    .select-menu .select-btn{
        display: flex;
        /*line-height: 30;*/
        user-select: none;
        border-radius:6px;
        padding: 1em 1em;
        margin: 0.4em 0;
    }
    .select-menu .options {
        display:none;
        position: absolute;
        overflow-y: auto;
        width: 100%;
        right: 0;
        max-height: 295px;
        padding: 10px;
        margin-top: 0;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        animation-name: fadeInDown;
        -webkit-animation-name: fadeInDown;
        animation-duration: 0.35s;
        animation-fill-mode: both;
        -webkit-animation-duration: 0.35s;
        -webkit-animation-fill-mode: both;
    }
    .select-menu .options .g-option {
        display: flex;
        gap:15px;
        height: 55px;
        cursor: pointer;
        padding: 0 16px;
        border-radius: 8px;
        align-items: center;
        background: #fff;
    }
    .select-menu .options .g-option:hover {
        background: #f2f2f2;
    }
    .select-menu .options .g-option i {
        font-size: 25px;
        margin-right: 12px;
    }
    .select-menu .options .g-option .option-text {
        font-size: 18px;
        color: #333;
    }

    .select-btn i {
        font-size: 25px;
        transition: 0.3s;
    }

    .select-menu.active .select-btn i {
        transform: rotate(-180deg);
    }
    .select-menu.active .options {
        display: block;
        opacity: 0;
        z-index: 10;
        animation-name: fadeInUp;
        -webkit-animation-name: fadeInUp;
        animation-duration: 0.4s;
        animation-fill-mode: both;
        -webkit-animation-duration: 0.4s;
        -webkit-animation-fill-mode: both;
    }
}

.nik-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    text-align: center;
    width: 100% !important;
    max-width: 300px !important;
    cursor: pointer;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 999999;
}
.nik-success {
    background: #4E9788;
    color: #fff;
}

.nik-error {
    background: #840000;
    color: #fff;
}

.nik-success svg{
    width:2rem;

}
.hidden {
	display: none !important;
}


@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}
@media(min-width: 728px){
    .nik-success, .nik-error {
        width: 100%;
    }
    .nik-container input[type="submit"]{
        width: 20% !important;
    }
    .nik-container {
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        grid-gap: 0 2em !important;
    }
}
/*End of Select Box CSS*/