body{
    height: 100vh;
}
body, .btn, .form-control {
    font-size: 13px;
}
#app{
    height: 100vh;
}
h3 {
    font-size: 23px;
}
.list-group-item.active a{
    color: #fff;
}
.pagination {
    justify-content: center;
 }
*:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.swal-button{
    box-shadow: none !important;
    outline: none !important;
}
.alert-error{
	font-style: italic;
    padding-top: 3px;
    font-weight: 600;
    color:#ff0000b0;
}
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999999999999;
}
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}


/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}


/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* login */
#login{
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #f0f0f0;

}
#login .login-contain{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#login form{
    position: relative;
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 8px;
    width: 120%;
    margin-left: -10%;

}

/* #login form #left-login{
    background-image: url("./images/img_signin.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;

} */
#login form #left-login img{
    width: 100%;
}
#login #right-login{
    padding: 80px 70px 80px 0px;
}
#right-login .login-desc{
    font-size: 1.47rem;
}
#right-login .login-title{
    color: #716e6e;

}
#right-login .login-desc{
    margin-bottom: 30px;
    color: #0078ee;
}
#right-login .lable-input{
    font-weight: 500;
    color: #848484;
}
#right-login .form-input{
    padding: 10px;
    border-radius: 6px;
    font-size: 15px;

}
#right-login #password{
    padding-right: 35px;
}
#right-login .btn-login,#right-login .btn-cancel {
    width: 100%;
    padding: 10px;
    background-color: #0d6efd ;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    border-radius: 6px;
}
#right-login .btn-cancel{
    background-color: #eb5f18 ;
}
#right-login .group-password{
    position:relative;
}
.group-password .input-group-append{
    position: absolute;
    top: 37px;
    right: 10px
}
.ic_password_hide{
    display: none;
}


    /* header */
#header{
    margin-bottom: 56px;
}
#header .header-content{
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-contents{
    margin-bottom: 20px;
}

#header .info-user{
    /* padding: 4px 0px 4px 10px; */
    background-color: #f1f2f8;
    border-radius: 40px;
   height: 45px;
   margin-left: 40px;
}
#header h3 {
    font-family: SF_Compact;
    padding: 4px 0px;
    margin-bottom: -4px;
}
#header .info-user .info-name {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 26px;
    -webkit-line-clamp: 1;
    height: 34px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    padding: 10px 5px 0px 10px;
    margin-left: 10px;
    /* float: right; */
}
#header .info-user .avatar-wrap{
    display: flex;
    justify-content: flex-end;
    padding-right: 24px;
}
#header .info-user .info-avata{
    width: 44px;
    height: 44px;
    padding-right: 5px;
}

/* menu-left */

#menu-left{
    margin-top: 49px;
}

/* #menu-left .logo{
    margin: 34px 80px;
} */
.app-header .logo{
    margin-top: 15px;
}
#menu-left .list-group .group-item{

    padding: 10px 15px;
    font-weight: 500;
    margin-bottom: 15px;
    border-radius: 50px;
}
#menu-left .list-group a{
    text-decoration: none;
    /* color: #858585 ;
    padding: 14px 50px 14px 0px; */
}
#menu-left .nav-item:last-child a{
    color: #ff2626;
}

#menu-left .icon-menu-left{
    margin: 0 5px 0 0;
    width: 28px;
    height: 28px;
}
.list-group .group-item-active a{
    color: #fff;
}
#menu-left .list-group .active{
    background-color: #055ad2;
}
#menu-left .list-group .active a{
    color: #fff;

}

/* #app .container-right{
    padding-right: 40px;
} */
.container-fluid{
    padding: 0 50px;
}
.cus-btn{
    background-color: #eb5f18;
    color: #fff;
    padding: 8px 20px;
    font-size: 16px;
}
#home .content-header, #email .content-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#home .content-header .title{
    font-weight: 600;
    color: #48495f;
}

#home .content-header .icon-search{
    width: 20px;
    height: 20px;
}

#home .content-header #header-search{
    font-size: 16px !important;
    padding: 5px;
    font-weight: 400;
    color: #8a8a8a;
    width: 300px;
}

/* #home .content-header .btn-add-website{
    background-color: #eb5f18;
    color: #fff;
    padding: 8px 20px;
    font-size: 15px;
} */

#home table thead{
    background-color: #ebebeb;
}

#home table thead tr th{
    color:#48495f
}
#home .border-radius-form{
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}
#home table td{
    color: #212529;
    display: table-cell;
    vertical-align: middle !important;
}
#home table tr:last-child{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}
#home table td.cus-status{
    display: flex;
    align-items: center;
}
#home table td.cus-status img{
    width: 15px;
    margin-right: 5px;
}
#home table .name-website{

    color: #439bf2;
    text-decoration: none;
}

#home table td .img-control{
    width: 38px;
    height: 38px;
}
#home table td .img-space {
    margin-right: 5px;
}
.list-group-item-cs .img-space{
    margin-left: -5px;
}
#home table td .btn-sm, .list-group-item-cs .btn-sm {
    padding: 0px 2px;
    cursor: pointer;
}
#home .b-page{
    margin-top: 20px;
}
.icon-create{
    width: 18px;
}



/* modal */
 #exampleModalLabel{
    color: #0078ee;
}
 #exampleModalLabel .icon-header-modal{
    width: 28px;
    height: 28px;
}
label.col-form-label{
    /* padding-left: 10px; */

}
#nameTable_length{
    display:none;
}
#nameTable_filter{
    display:none;

}

/* .dataTables_wrapper th, .dataTables_wrapper td { white-space: nowrap; } */
.dataTables_wrapper th.action, .dataTables_wrapper td.action {
    white-space: normal;
 }
/* .btn-action-cs img{
    margin-left: -30px;
    margin-right: 15px;
} */

.pointer{
    cursor: pointer;
}
/* search */
#home .wrap{
    width: 30%;
}
#home .search {
    width: 100%;
    position: relative;
    display: flex;
  }

#home .searchTerm {
    width: 100%;
    border: 1px solid #48495f;
    border-right: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #48495f;;
    padding: 0px 12px
  }


#home .searchButton {
    width: 40px;
    height: 38px;
    border: 1px solid #48495f;;
    /* background: #48495f;; */
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/* email */

#email label.col-form-label{
    font-weight: 500;
    color: #48495f
}

#btn-search{
    border-color: #ced4da;
}

.main-contents .table {
    border-radius: 6px;
}
.main-contents .table .thead-custom{
    background: #dee2e6;
}
.btn-delete-all{
    /* color: #a0a0a0 !important; */
    margin-left: -15px;
    background-color: #ff2626;
    border-color: #ff2626;
    color: #fff  !important;
}
.before-btn-del {
    padding-left: 30px;
}

.before-btn-del, .demo, .demo-1{
    margin-top: 15px;
}


.btn-retype{
    background-color: #f8671b;
    color: #fff !important;
}

/* #add_modal .col-form-label, #edit_customer_modal .col-form-label { */
    /* padding-left: 30px; */
/* } */
#nameTable_wrapper{
    padding-right: 0px;
    padding-left: 0px;
}

#add_modal .select2-selection , #edit_customer_modal .select2-selection  {
    height: 42.5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42.5px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
}
.center-on-lower{
    display: table-cell;
    vertical-align: middle !important;
}
.modal-content .modal-header h5{
    color: #0078ee;
}


/* search */
#home .wrap{
    width: 30%;
}
#home .search {
    width: 100%;
    position: relative;
    display: flex;
  }

#home .searchTerm {
    width: 100%;
    border: 1px solid #dee2e6;
    border-right: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    padding: 0px 12px
  }


#home .searchButton {
    width: 40px;
    height: 38px;
    border: 1px solid #48495f;;
    background: #48495f;;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/* email */

#email label.col-form-label{
    font-weight: 500;
    color: #48495f
}

.btn-primary {
    color: #fff !important;
}
#menu-left .list-group{
    list-style: none;
}


/* #header .header-content .header-right{
    padding-right: 40px;
} */

#home .edit-btn:hover, #home .edit-btn:focus {
    text-decoration: none;
}

.delete-btn {
    position: absolute;
    top: 5%;
    right: 25px;
    display: none;
    z-index: 999;
    margin-top: 3px !important;
}
.clear-text-input {
    position: absolute;
    top: 11%;
    right: 75px;
    display: none;
    z-index: 999;
}
#xClear {
    padding-right: 30px;
}

#input-search{
    padding-right: 30px;
}

.dropdown-menu{
    padding: 0px;
}
.dropdown-item{
    padding: 3px 12px;
    font-size: 15px;

}
.header-content .header-left{
    display: flex;
    align-items: center;
}

.highcharts-title{
    font-size: 16px !important;
}

.name-dropdown{
    font-size: 15px;
}

.highcharts-legend-item text{
    cursor: default !important;
    font-size: 15px !important;
}
.content-statistical{
    margin-top: 15px;
}
.content-statistical .pull-right {
    display: flex;
    align-items: center;
}
.content-statistical .pull-right label{
    margin-right: 10px;
}

.btn-outline-secondary:hover{
    color: #6c757d;
    background-color: #fff;
}
.col-cancel{
    padding-right: 5px;
}
.col-login{
    padding-left: 5px;
}
@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1.0;
    }
}

.sol-container * {
    margin: 0;
    padding: 0;
}

.sol-inner-container {
    position: relative;
    height: 34px;
    line-height: 34px;

    border: 1px solid #ccc;
    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
}

.sol-container.sol-active .sol-inner-container {
    z-index: 9999;
    background: #fff;

    border-color: rgba(82, 168, 236, 0.8);

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
}

.sol-input-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 25px;
}

.sol-caret-container {
    position: absolute;
    display: inline-block;
    width: 25px;
    right: 0;
    top: 0;
    bottom: 0;
}

.sol-caret-container .sol-caret {
    position: relative;
    display: inline-block;
    left: 10px;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-top: 4px solid #000;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.sol-input-container input[type="text"] {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #555;
    padding: 0 7px;
    outline: none;
    width: 100%;
    height: 100%;
}

.sol-input-container input[type="text"]:-ms-input-placeholder {
    color: #ccc;

}

.sol-input-container input[type="text"]::-ms-clear {
    display: none;
}

.sol-selection-container {
    display: none;
}

.sol-container.sol-active .sol-selection-container {
    display: block;
    position: fixed;
    left: inherit;
    top: inherit;
    z-index: 10000;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
}

.sol-active.sol-selection-top .sol-selection-container {
    -webkit-border-bottom-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;

    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .175);
    -moz-box-shadow: 0 0 12px rgba(0, 0, 0, .175);
    box-shadow: 0 0 12px rgba(0, 0, 0, .175);
}

.sol-active.sol-selection-top .sol-inner-container {
    -webkit-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;

    -webkit-border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
    border-top-right-radius: 0;
}

.sol-active.sol-selection-bottom .sol-selection-container {
    -webkit-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;
}

.sol-active.sol-selection-bottom .sol-inner-container {
    -webkit-border-bottom-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;

    -webkit-border-bottom-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}

.sol-action-buttons {
    color: #555;
    border-bottom: 1px solid #ccc;
    background: #eee;
    padding: 7px 10px;

    -webkit-border-top-right-radius: 4px;
    -moz-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}

.sol-action-buttons a {
    line-height: 1em;
    text-decoration: none;
    color: #0088cc;
    border-bottom: 1px solid transparent;
}

.sol-action-buttons a:hover {
    border-bottom: 1px solid #0088CC;
}

.sol-action-buttons .sol-select-all {
    float: left;
}

.sol-action-buttons .sol-deselect-all {
    float: right;
}

.sol-action-buttons .sol-clearfix {
    clear: both;
}

.sol-selection {
    overflow: auto;
    position: relative;
    min-height: 0px;
}

.sol-selection:empty {
    display: none;
}

.sol-option {
    display: block;
}

.sol-label {
    padding: 5px 10px;
    display: block;
    position: relative;
}

.sol-label-text {
    padding-left: 20px;
    line-height: 1.2em;
}

.sol-selection:not(.sol-keyboard-navigation) .sol-option:hover, .sol-option.keyboard-selection {
    background: #0088CC;
    color: #fff;
}

.sol-optiongroup {
    background: #f7f7f7;
    padding-bottom: 1px;
}

.sol-optiongroup-label {
    color: #555;
    background: #eee;
    font-weight: bold;
    margin-bottom: 5px;
    padding: 3px 5px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.sol-optiongroup.disabled {
    color: #999;
}

.sol-selection div:first-child.sol-optiongroup > .sol-optiongroup-label {
    border-top: none;
}
/* .sol-current-selection {
    display: none;
} */
.sol-checkbox, .sol-radio {
    position: absolute;
    width: 13px;
    height: 13px;
    padding: 0;
    margin: 0;
    top: 6px;
}
.font-weight-600{
    font-weight: 600;
}
.sol-selected-display-item,
.sol-results-count {
    display: inline-table;
    border: 1px solid #ccc;
    background: #f7f7f9;
    font-size: 0.9em;
    margin-right: 5px;
    margin-bottom: 5px;
    border-collapse: separate;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.sol-selected-display-item-text {
    padding: 3px 5px;
    display: table-cell;
    vertical-align: top;
}

.sol-quick-delete {
    color: #777;
    display: table-cell;
    font-weight: bold;
    text-align: center;
    padding: 3px 5px;
    vertical-align: top;
}

.sol-quick-delete:hover {
    color: #111;
    cursor: pointer;
}

.sol-quick-delete + .sol-selected-display-item-text {
    padding-left: 0;
}

.sol-filtered-search {
    display: none;
}

.sol-no-results, .sol-loading-data {
    padding: 5px 0 5px 0;
    color: #999;
    font-style: italic;
    text-align: center;
}

.sol-loading-data {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
