/* fallback */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../font/material.woff2') format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

input[type=tel] {
    direction: ltr;
}

.swal-text {
    direction: rtl !important;
    text-align: right !important;
}

.apexcharts-legend-text, .apexcharts-yaxis-label, .apexcharts-xaxis-label tspan {
    font-family: IRANSans !important;
}

.form-control-white {
    color: #fff !important;
    border-color: #fff !important;
}

.form-control-white:hover {
    border-color: #fff !important;
}

.form-control-white::-webkit-input-placeholder { /* Edge */
    color: #fff;
}

.form-control-white:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

.form-control-white::placeholder {
    color: #fff;
}

/* Dialog Style*/
.dialog {
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
}

.dialog-box {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: absolute;
}

.dialog-heading {
    padding: 10px;
}

.dialog-small {
    width: 400px !important;
    min-height: 300px;
    padding: 20px;
}

.dialog-large {
    width: 80%;
    min-height: 300px;
    padding: 20px;
}

.dialog-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
}

.btn i {
    padding: 0 5px !important;
    vertical-align: sub !important;
}

.dialog-list li {
    color: #666;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.dialog-list li span {
    margin-right: 10px;
}

.dialog-list li:last-child {
    border-bottom: none;
}

.dialog-list li:hover {
    background: rgb(52, 119, 211);
    background: -moz-linear-gradient(left, rgb(52, 119, 211) 0%, rgba(161, 187, 219, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgb(52, 119, 211)), color-stop(100%, rgba(161, 187, 219, 1)));
    background: -webkit-linear-gradient(left, rgb(52, 119, 211) 0%, rgba(161, 187, 219, 1) 100%);
    background: -o-linear-gradient(left, rgb(52, 119, 211) 0%, rgba(161, 187, 219, 1) 100%);
    background: -ms-linear-gradient(left, rgb(52, 119, 211) 0%, rgba(161, 187, 219, 1) 100%);
    background: linear-gradient(to right, rgb(52, 119, 211) 0%, rgba(161, 187, 219, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4b8bd3', endColorstr='#a1bbdb', GradientType=1);
    color: #fff;
}

.dialog-list li:hover .label-orange {
    background: #fff;
    color: #d69222;
}

.hidden {
    display: none !important;
}

/* custom input */

.custom-input {
    position: relative;
}

.custom-input label::before {
    content: attr(data-title);
    position: absolute;
    line-height: 20px;
    font-size: 12px;
    top: -10px;
    background: #fff;
    padding: 0 6px;
    right: 25px;
    color: #777;
}

.operator-img {
    position: absolute;
    font-size: 12px;
    top: 10px;
    right: 25px;
    color: #777;
    width: 30px;
    height: 30px;
    display: none;
}

.operator-img.mtn {
    background-position: 0;
}

.operator-img.mci {
    background-position: 30px 0;
}

.operator-img.rtl {
    background-position: 60px 0;
}

.custom-input input {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 14px;
    color: #222;
    border: 2px solid #666;
    text-align: left;
}

.custom-input input:valid + label::before {
    content: attr(data-title);
}

.custom-input input:focus + label::before {
    color: #95686a;
}

.custom-input input:focus {
    border-color: #95686a;
}

/* custom select */

.custom-input label::before {
    content: attr(data-title);
    position: absolute;
    line-height: 20px;
    font-size: 12px;
    top: -10px;
    background: #fff;
    padding: 0 6px;
    right: 25px;
    color: #777;
}

.custom-input select {
    width: 130px;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 14px;
    color: #222;
    border: 2px solid #666;
    text-align: center;
    margin: 0 10px;
}

.custom-input select:valid + label::before {
    content: attr(data-title);
}

.custom-input select:focus + label::before {
    color: #95686a;
}

.custom-input select:focus {
    border-color: #95686a;
}

.b-radius-0 {
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

.b-radius-1 {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
}

.b-radius-3 {
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -o-border-radius: 30px;
}

/**{*/
/*    list-style: none !important;*/
/*}*/
/*begin custom label style */
.label {
    border: none;
}

.label-sm {
    width: 120px;
    height: 20px;
    line-height: 20px;
}

.label-md {
    width: 150px;
    height: 35px;
    line-height: 40px;
}

.label-orange {
    color: #fff;
    background: #d69222;
}

.label-grey {
    color: #666;
    background: #dbe2ea;
}

.font-bold {
    font-weight: 700;
}

li {
    list-style: none !important;
}

.list-styled {
    list-style: inside !important;
}

.pointer {
    cursor: pointer;
}

.form-control-white {
    color: #fff !important;
    border-color: #fff !important;
}

.form-control-white:hover {
    border-color: #fff !important;
}

.form-control-white::-webkit-input-placeholder { /* Edge */
    color: #fff !important;
}

.form-control-white:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff !important;
}

.form-control-white::placeholder {
    color: #fff !important;
}

.register-link {
    float: left;
    text-align: left;
}

.col-md-12 {
    width: 100% !important;
}

.pagination li {
    padding: 5px 15px;
    margin: 5px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    background: #eee;
}

.pagination li a {
    color: #666 !important;
    width: 100%;
    height: 100%;
}

.pagination li.disabled {
    background: transparent !important;
    color: #666;
}

.pagination li.active {
    background: #00bcd4 !important;
    color: #fff;
}

.course-content-tag-area .tag-badge {
    padding: 5px 30px !important;
    position: relative !important;
}

.course-content-tag-area span i {
    position: absolute !important;
    right: 10px !important;
}

.course-content-tag-select i {
    display: none;
}

.course-content-tag-select:hover {
    background: #007bff !important;
    color: #ffffff;
}