﻿.dl {
    border: none;
    border-radius: 30px;
    z-index: 1095;
    position: absolute;
    background-color: #EDEFF3;
    box-shadow: rgb(0 0 0 / 25%) -5px 20px 20px;
}

.confirm-popup-dialog {
    box-shadow: rgb(0 0 0 / 25%) -5px 20px 20px;
}
.dl_hd {
    border: none;
    border-radius: 0px;
    max-height: 60px;
    min-height: 52px;
    width: 100%;
    align-items: center;
    /*box-shadow: 1px -1px 3px #888;*/
}

    .dl_hd .aapi_dialog_left .aapi_btn_icon {
        line-height: 24px;
    }
.dl_hd_left {
    float: left;
    cursor: pointer;
}

.dl_hd_right {
    float: right;
    cursor: pointer;
}
.dl_hd img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.dl_hd_title {
    margin-left: auto;
    margin-right: auto;
    letter-spacing: inherit;
    text-transform: none;
    font-size: 16px;
}

.dl_hd_title_icon {
    float: left;
    padding-right: 5px;
}

.dl_hd_title_text {
    float: left;
}

    .dl_hd_title_text .modal-title {
        margin-bottom: 0;
        line-height: 1.5;
        position: relative;
        display: inline-block;
        margin: 0;
        font-size: 16px;
        font-family: proxima-nova;
        font-weight: 700;
        letter-spacing: inherit;
        color: #fff;
        user-select: none;
        text-transform: none;
    }
.dl_body {
    overflow: auto;
    padding: 15px;
    height: 100%;
}

.dl_error, .dl_success, .dl_warning, .dl_status {
    position: absolute;
    height: 0px;
    opacity: 0;
    color: #fff;
    text-align: left;
    font-size: 14px;
    padding: 0px;
    max-height: 150px;
    overflow: auto;
    z-index: 1000;
    border-radius: 10px;
    padding: 20px;
    padding-right: 35px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    animation: FadeOut .5s ease-in-out;
    display: none;
}

    .dl_status.active {
        height: initial;
        animation: FadeIn .5s ease-in-out;
        opacity: 1;
    }

    .dl_success.active {
        height: initial;
        animation: FadeIn .5s ease-in-out;
        opacity: 1;
    }

    .dl_warning.active {
        height: initial;
        animation: FadeIn .5s ease-in-out;
        opacity: 1;
    }

    .dl_error.active{
        height: initial;
        animation: FadeIn .5s ease-in-out;
        opacity: 1;
    }

.dl_error {
    /*background: linear-gradient(135deg, #f96149, #fc658e) !important;*/
    background-color: #F8C5C2;
    border:1px solid #F8C5C2;
}

.dl_success {
    /*background: linear-gradient(135deg, #17d998, #11c7bd);*/
    background-color: #BAF4CC;
    border: 1px solid #BAF4CC;
}

.dl_warning {
    /*background: linear-gradient(135deg,#f8784c,#fc9c65) !important;*/
    background-color: #FAD3A2;
    border: 1px solid #FAD3A2;
}

.dl_status {
    /*background: linear-gradient(135deg,#f8784c,#fc9c65) !important;*/
    background-color: #BAD5FC;
    border: 1px solid #2A52B3;
}


.dl_error .svg_holder {
   float: left;
}

.dl_warning .svg_holder {
    float: left;
}

.dl_success .svg_holder {
    float: left;
}

.dl_status .svg_holder {
    float: left;
}

.dl_error .svg_holder svg {
    width: 20px;
    height: 20px;
}

.dl_warning .svg_holder svg {
    width: 20px;
    height: 20px;
}

.dl_success .svg_holder svg {
    width: 20px;
    height: 20px;
}

.dl_status .svg_holder svg {
    width: 20px;
    height: 20px;
}

.dl_success span {
    color: #5C9E56;
}

.dl_warning span {
    color: #B3752A;
}

.dl_error span {
    color: #B23231;
}

.dl_status span {
    color: #2A52B3;
}

.toast_pane .svg_holder svg {
    width: 14px;
    height: 14px;
}

@keyframes FadeIn {
    0% {
        opacity: 0;
        height: initial;
        /*bottom: -300px;*/
    }

    100% {
        opacity: 1;
        height: initial;
        /*bottom: 15px;*/
    }
}

@keyframes FadeOut {
    0% {
        /*bottom: 15px;*/
        opacity: 1;
        height: initial;
    }

    99% {
        opacity: 0;
        height: initial;
        /*bottom: -355px;*/
    }

    100% {
        height: 0;
        opacity: 0;
        /*bottom: -355px;*/
    }
}

        .dl_error span {
            line-height: 1.2;
        }

.dl_warning span, .dl_success span, .dl_error span, .dl_status span {
    line-height: 1.2;
    padding-left: 30px;
    display: inline-block;
}

.dl_sb {
    border-top: 1px solid #ccd0d8;
    height: 57px;
    width: 100%;
    border-radius: 0px 0px 30px 30px;
    display: inline-table;
}

.dl_sb_msgs {
    float: left;
    margin: 0 10px;
}

    .dl_sb_msgs .attention {
        width: 18px;
        height: 19px;
        background-image: url(../icons/red/icon-warning-triangle-red.svg);
        background-repeat: no-repeat;
        vertical-align: middle;
        background-size: 18px;
        position: relative;
        float: left;
    }

    .dl_sb_msgs .txt_msg {
        margin: 0px 10px;
        top: 5px;
        position: relative;
        color: #cc2941;
        font-size: 13px;
        font-weight: bold;
    }
        .txt_msg a {
            color: blue !important;
            cursor: pointer !important;
            text-decoration: underline !important;
            pointer-events: all !important;
            float: none;
        }
.link_click_here {
    color: blue !important;
    cursor: pointer !important;
    text-decoration: underline !important;
    pointer-events: all !important;
    float: none;
    margin: auto;
}
.dl_sb_icons {
    float: right;
}
.remove-poiner-events {
    pointer-events: none;
}
.icon-size-20-20 {
    height: 20px;
    width: 20px;
}
.dl_sb_buttons {
    float: left;
}

    .dl_sb_buttons .multiselect {
        height: 100%;
    }

    .dl_sb_icon {
        cursor: pointer;
    }

.dl_sb_popup {
    padding: 0px;
    height: 0px;
    width: 100%;
    border-top: none;
    position: relative;
    justify-content: center;
    z-index: 50;
    flex-wrap: unset;
}

.aapi_dialog_right {
    text-align: right;
    float: right;
    right: 15px;
    /* top: 0; */
    position: absolute;
    /* height: 100%;*/
}

    .aapi_dialog_right .aapi_custom_button img {
        margin-left: 5px;
        margin-top: -5px;
    }

.modal-body p {
    margin: 0 auto;
    position: relative;
    line-height: 1.4;
    padding: 33px;
    padding-top: 0px;
    text-align: center;
    width: 100%;
    font-size: 16px;
}

/*--------- Search field -------------------------*/
    /*.aapi_search {
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 0px;
    padding-left: 10px;
    line-height: 18px;
    margin-top: 15px;
    position: relative;
}

    .aapi_search input {
        background-color: transparent;
        border: none;
        position: absolute;
        left: 15px;
        top: 2px;
        right: 20px;
        letter-spacing: 1.9px;
    }

        .aapi_search input::placeholder {
            color: #ffffff;
        }

        .aapi_search input:focus {
            outline: none;
        }

.minimized {
    background-color: transparent;
    width: 100px;
}

.maximized {
    background-color: #ffffff;
    width: 200px;
}*/

.aapi_dialog_left {
    display: inline-flex;
    align-items: center;
    height: 50px;
}

    .aapi_dialog_left .aapi_dialog_nav_item {
        position: relative;
    }

        .aapi_dialog_left .aapi_dialog_nav_item .activity_line {
            position: relative;
            height: 1px;
            border: 1px solid;
            width: 30px;
            bottom: 5px;
            margin: 0 auto;
            display: block;
            color: #000;
        }


label.aapi_subtitle_field_label {
    color: #343b4e !important;
    font-weight: lighter !important;
    text-align: left;
    position: relative;
    float: left;
    margin-left: 40px;
    height: 20px;
    letter-spacing: 0.89px !important;
    font-size: 13px;
    line-height: 14px;
}

/*@media screen and (-webkit-min-device-pixel-ratio: 1.1) and (max-width: 1440px) {
    .aapi_dialog_left .aapi_dialog_nav_item button {
        font-size: 11px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 1.3) and (max-width: 1440px) {
    .aapi_dialog_left .aapi_dialog_nav_item,
    .aapi_dialog_left span {
        display: none !important;
    }

        .aapi_dialog_left .aapi_dialog_nav_item button {
            font-size: 9px;
        }
}*/
