/*================================================================================
	Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
.btnSpinner {
    position: relative;
}
.btnSpinner:after {
    content: '';
    position: absolute;
    top: calc(50% - 1em);
    left: calc(50% - 1em);
    z-index: 10;
    display: inline-block;
    width: 2em;
    height: 2em;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.has-float-label {
    display: block;
    position: relative;
}

.has-float-label label,
.has-float-label>span:last-of-type {
    position: absolute;
    background-color: white;
    cursor: text;
    font-size: 90%;
    opacity: 1;
    top: -0.4em;
    left: 0.75rem;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
}
.sms-list-container .overlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    cursor: pointer;
}
.sms-list-container .sms-list-section{
    background: white;
    left: auto;
    position: fixed;
    top: 0;
    right: -50%;
    padding: 20px 1rem ;
    width: 50%;
    height: 100vh;
    z-index: 99999;
    overflow-y: auto;
    transition: all 0.5s;
}
.sms-list-container .sms-list-section .header{
    display: flex;
    justify-content: space-between;
}

.sms-list-container .sms-list-section .sms-list{
    margin-top: 1rem;
    /* height: ; */
}
.sms-list-container .sms-list-section .sms-list-table{

}
.sms-list-container.show .overlay{
    display: block;
}
.sms-list-container.show .sms-list-section{
    transform: translateX(-100%);
}
/* Change clear size of select2 */
.select2-container--default .select2-selection--single .select2-selection__clear {
    font-size: 18px;
}
.waada-custom-green {
    color:#28C76F !important;
}
.tree {
overflow: auto !important;
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #fbfbfb;
    border: 1px solid #999;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
}

.tree li {
    list-style-type: none;
    margin: 0;
    padding: 10px 5px 0 5px;
    position: relative
}

.tree li::before,
.tree li::after {
    content: '';
    left: -20px;
    position: absolute;
    right: auto
}

.tree li::before {
    border-left: 1px solid #999;
    bottom: 50px;
    height: 100%;
    top: 0;
    width: 1px
}

.tree li::after {
    border-top: 1px solid #999;
    height: 20px;
    top: 25px;
    width: 25px
}

.tree li span {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #999;
    border-radius: 5px;
    display: inline-block;
    padding: 3px 8px;
    text-decoration: none
}

.tree li.parent_li>span {
    cursor: pointer
}

.tree>ul>li::before,
.tree>ul>li::after {
    border: 0
}

.tree li:last-child::before {
    height: 30px
}

.tree li.parent_li>span:hover,
.tree li.parent_li>span:hover+ul li span {
    background: #eee;
    border: 1px solid #94a0b4;
    color: #000
}
label.required::after{
    content: '*';
    color: red;
    font-weight: bold;
    margin-left: 2px;
}