﻿.tab_control {
    width: 100%;
    height: calc(100% - 40px);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.135216);
    /*border-radius: 8px;*/
    /*background-color: white;*/
    overflow: hidden;
    /*background: #F9F9F9;*/
}

.tab_item_header_container {
    height: 44px;
    width: 100%;
    /*background: linear-gradient(45deg, #12B2B3 0%, #56E0E0 100%);*/
    /*background: linear-gradient(45deg,#F7F7FD 0%, #7065F0 100%);*/
    /*background: linear-gradient(45deg,#7065F0 0%, #7065F0 100%);*/
    /*background: #121317;
    box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.1);*/
}

.tab_inner_container {
    height: calc(100% - 44px);
    width: 100%;
    position: relative;
}

.tab_item {
    display: inline-block;
    float: right;
    height: 100%;
    line-height: 44px;
    text-align: center;
    /*padding: 2px;*/
    cursor: pointer;
    padding-right: 10px;
    padding-left: 10px;
    font-weight: bold;
    transition: all .3s;
    color: white;
    transition: .3s all;
    direction:rtl;
    /*border-left: 1px solid #30363D;
    border-bottom: #30363D 2px solid;*/
    /*background-color: #FFFFFF;*/
    /*color: #CBCFD4;*/
}

    .tab_item:hover {
        /*border-bottom: #FF0039 2px solid;*/
        /*color: #CBCFD4;*/
    }

.tab_item_detail {
    width: 100%;
    height: calc(100% - 17px);
    overflow: auto;
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    bottom: 0;
    transition: .3s opacity,.3s visibility;
}

.tab_item_hide {
    visibility: hidden;
    opacity: 0;
}

.tab_selected_tab {
    /*border-bottom: #ffffff 1px solid;*/
    /*color: #CBCFD4;*/
    color: black;
    /*  border-top-right-radius: 5px;
    border-top-left-radius: 5px;*/
    background: white;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background: #EAEAEA;
    border-top: #006DA7 3px solid;
}

.form_tab {
    display: inline-block;
    height: 100%;
    float: right;
    /*border-left: 1px solid rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(0, 0, 0, 0.25);*/
    /*border-bottom: 1px solid #FF0039;*/
    transition: all .3s ease-in-out;
    cursor: pointer;
    transition: .2s all;
    color: white;
    /*font-weight: bold;*/
    /*border-top: 3px transparent solid;*/
    padding-right: 3px;
    padding-left: 6px;
    position: relative;
    margin-right: 2px;
    margin-left: 2px;
    display: flex;
    flex-direction: row-reverse;
    overflow:hidden;
    /*font-weight: bold;*/
    /*background-color: #212428;*/
}

    .form_tab:hover {
        /*border-top: 2px #1F8EFA solid;*/
        /*box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
    }


.form_tab_shadow {
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
}


.form_tab_lbl {
    display: inline-block;
    height: 100%;
    float: right;
    line-height: 40px;
    cursor: pointer;
    text-align: right;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    direction: rtl;
}


.form_tab_closer {
    display: inline-block;
    height: 100%;
    min-width: 30px;
    width: 30px;
    float: right;
    background-image: url('img/closewhite.svg');
    background-size: contain;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

    .form_tab_closer:hover {
        animation: pulse 1s infinite;
    }

/*.form_selected_tab {
    display: inline-block;
    height: 100%;
    width: 5px;
    float: right;
    background-image: url('Imgs/admin_panel/selected.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s all;
    opacity: 1;
    background-size: 0;
}*/

.form_selected_tab {
    /*background-color: #18191D;*/
    /*margin-top: 1px;*/
    /*border-bottom: 3px #FF0039 solid;*/
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
    color: black;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background: #EAEAEA;
    border-top: #006DA7 3px solid;
}


    .form_selected_tab > .form_tab_closer {
        background-image: url('img/closeblack.svg');
    }

    .form_selected_tab .form_selected_tab_border_bottom {
        /*border-bottom: 3px #FFFFFF solid;*/
        /*box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
        /*background: #FF0039;
        box-shadow: 0px 0px 8px #FF0039;*/
      /*  background-color: #FFFFFF;*/
    }

.form_selected_tab_border_bottom {
    position: absolute;
    margin: auto;
    bottom: 0px;
    right: 0;
    left: 0;
    height: 2px;
    transition: all .3s ease-out;
}

.form_selected_icon {
    width: 30px;
    float: right;
    background-image: url('Imgs/admin_panel/selected.png');
    opacity: 1;
    animation: tada 1s ease infinite;
    background-size: 24px 24px;
}


