@keyframes rotate {
    from {
        transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
    }
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    box-sizing: border-box;
}

*::selection {
    background-color: rgba(0, 0, 0, 0.1);
}

*::-moz-selection {
    background-color: rgba(0, 0, 0, 0.1);
}

*::-webkit-selection {
    background-color: rgba(0, 0, 0, 0.1);
}

html,
body {
    height: 100%;
    cursor: default;
}

html {
    overflow: hidden;
    direction: rtl;
}

body {
    font-size: 15px;
    color: #222;
    background: #f2f3f5;
    font-family: "iranyekanlight";
}

#app,
#page-form,
#page-panel {
    height: 100%;
}

a {
    color: #222;
    text-decoration: none;
    cursor: pointer;
    font-family: "iranyekanmedium";
    font-weight: normal;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

a:hover:not(.button) {
    color: #999;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "iranyekanbold";
    font-weight: normal;
}

i.fal {
    position: relative;
    top: 2px;
}

.clear {
    clear: both;
    height: 0;
}

.clear2 {
    margin: 40px 0;
}

.ltr {
    direction: ltr;
    text-align: right;
}

.floatLeft {
    float: left !important;
}

.noScroll {
    overflow: hidden !important;
}

.none-decoration {
    text-decoration: none !important;
}

.blur {
    filter: blur(4px);
    -moz-filter: blur(4px);
    -webkit-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.m-0 {
    margin: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pxy-0 {
    padding: 0 !important;
}

.padding-x-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.hide {
    display: none !important;
}

.textCenter {
    text-align: center !important;
}

.textJust {
    text-align: justify;
}

.textRight {
    text-align: right;
}

.textLeft {
    text-align: left;
}

.width-auto {
    width: auto !important;
}

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

.inlineBlock {
    display: inline-block !important;
}

.flex {
    display: flex;
}

.block-w100 {
    display: block;
    width: 100%;
}

.letter-space {
    letter-spacing: 2px;
}

.py-10px {
    padding-top: 10px !important;
}

.lineHeight25px {
    line-height: 25px !important;
}

.fullFlex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.space-around {
    justify-content: space-around !important;
}

.box {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 30px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.box .title {
    position: relative;
    margin-bottom: 20px;
}

.box .title:before {
    content: "";
    position: absolute;
    top: -3px;
    right: -30px;
    background: #ffd23f;
    width: 5px;
    height: 30px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.box .title h2,
.box .title h3 {
    font-size: 18px;
    font-family: "iranyekanbold";
    font-weight: normal;
}

.box .title a {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffe36b;
    font-size: 12px;
    padding: 4px 15px;
    line-height: 21px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.box .title a i {
    position: relative;
}

.box .title a:hover {
    color: inherit;
    background: #ebcf57;
}

.box .title.bordered {
    border-bottom: 1px solid #eee;
    padding: 20px 30px;
    margin: -30px -30px 30px -30px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.box .title.bordered:before {
    top: 20px;
    right: 0;
}

.box .title.bordered a {
    left: 30px;
    top: 20px;
    width: auto;
}

.box .title span {
    font-size: 14px;
}

.box b {
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.box.search-box {
    padding: 20px;
    background: #777;
}

.box.search-box label input,
.box.search-box label textarea,
.box.search-box label select {
    background: #444;
    border-color: #444;
    color: #fff;
    box-shadow: 0 0 0 3px #999;
}

.box.search-box label .choices__inner {
    color: #fff;
    background: #444 !important;
    border-color: #444;
    box-shadow: 0 0 0 3px #999;
}

.box.search-box label .choices__list {
    color: #fff;
    background: #444;
    border-color: #444;
}

.box.search-box label .choices__input {
    background: #333;
    border-color: #444;
    color: #fff;
}

.box.search-box label .is-highlighted {
    background: #333;
}

.box.search-box label.separate span {
    color: #fff;
    background: #999;
    border-color: #999;
}

.box.dark-bg {
    background: #fafafa;
}

.box-sub {
    background: #fafafa;
    padding: 30px 20px 15px 20px;
    margin-top: -35px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 30px;
    position: relative;
    z-index: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.box-sub h3 {
    font-size: 16px;
}

.box-sub ul,
.box-sub ol {
    list-style-position: inside;
}

.box-rounded.box {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.box-rounded.box-sub {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.box-rounded ul.list.full li:last-child {
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.el-rounded {
    border-radius: 10px !important;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.el-rounded .choices__inner {
    border-radius: 10px !important;
}

.switchContainer,
.demo-switch-container {
    direction: ltr;
    text-align: right;
}

.index_counts {
    text-align: center;
    margin-top: -10px;
    color: #a8a8a8;
}

span.index_counts {
    margin: 0 10px;
    color: #a8a8a8;
}

label {
    display: block;
    max-height: 46px;
}

label.interior,
label.verification-code {
    position: relative;
}

label.interior i {
    position: absolute;
    top: 9px;
    left: 12px;
    font-size: 22px;
    z-index: 1;
    color: #ccc;
}

label.interior.textLeft i {
    left: auto;
    right: 12px;
}

label.verification-code input,
label.verification-code textarea {
    font-size: 20px;
    letter-spacing: 15px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

label.textLeft input,
label.textLeft textarea {
    text-align: left;
}

label.separate {
    white-space: nowrap;
    max-height: 47px;
}

label.separate span:not(.switch) {
    background: #f2f2f2;
    display: inline-block;
    width: 125px;
    padding: 0 10px;
    border: 1px solid #f2f2f2;
    text-align: center;
    font-family: "iranyekanmedium";
    font-weight: normal;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

label.separate.type2 span:not(.switch) {
    width: 200px;
}

label.separate.type2 input,
label.separate.type2 select,
label.separate.type2 .choices {
    width: calc(100% - 205px) !important;
}

label.separate .switchContainer,
label.separate .demo-switch-container {
    direction: ltr;
    display: inline-block;
    width: calc(100% - 130px);
    height: 41px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
    position: relative;
    top: 2px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

label.separate .switchContainer .switch small,
label.separate .demo-switch-container .switch small {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

label.separate .switchContainer .switch-default,
label.separate .demo-switch-container .switch-default {
    line-height: 45px;
    border: none;
    position: relative;
    top: -3px;
    width: 100%;
    height: 40px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

label.separate .switchContainer .switch-default small,
label.separate .demo-switch-container .switch-default small {
    width: 50%;
    height: 100%;
}

label.separate input,
label.separate select {
    display: inline-block;
    width: calc(100% - 130px);
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

label.separate .row .col-4:first-child input,
label.separate .row .col-3:first-child input,
label.separate .row .col-6:first-child input,
label.separate .row .col-4:first-child select,
label.separate .row .col-3:first-child select,
label.separate .row .col-6:first-child select,
label.separate .row .col-4:first-child textarea,
label.separate .row .col-3:first-child textarea,
label.separate .row .col-6:first-child textarea,
label.separate .row .col-4:first-child .choices__inner,
label.separate .row .col-3:first-child .choices__inner,
label.separate .row .col-6:first-child .choices__inner {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

label.separate .choices {
    width: calc(100% - 130px) !important;
}

label.separate.dual .choices {
    width: calc(100% - 64%) !important;
}

label.separate .choices__inner {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

label.separate.el-rounded span:not(.switch) {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

label.separate.el-rounded input {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

label.separate.el-rounded .row .col-4 input,
label.separate.el-rounded .row .col-3 input,
label.separate.el-rounded .row .col-6 input,
label.separate.el-rounded .row .col-4 select,
label.separate.el-rounded .row .col-3 select,
label.separate.el-rounded .row .col-6 select,
label.separate.el-rounded .row .col-4 textarea,
label.separate.el-rounded .row .col-3 textarea,
label.separate.el-rounded .row .col-6 textarea,
label.separate.el-rounded .row .col-4 .choices__inner,
label.separate.el-rounded .row .col-3 .choices__inner,
label.separate.el-rounded .row .col-6 .choices__inner {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

label.separate.el-rounded .row .col-4.el-rounded input,
label.separate.el-rounded .row .col-3.el-rounded input,
label.separate.el-rounded .row .col-6.el-rounded input,
label.separate.el-rounded .row .col-4.el-rounded select,
label.separate.el-rounded .row .col-3.el-rounded select,
label.separate.el-rounded .row .col-6.el-rounded select,
label.separate.el-rounded .row .col-4.el-rounded textarea,
label.separate.el-rounded .row .col-3.el-rounded textarea,
label.separate.el-rounded .row .col-6.el-rounded textarea,
label.separate.el-rounded .row .col-4.el-rounded .choices__inner,
label.separate.el-rounded .row .col-3.el-rounded .choices__inner,
label.separate.el-rounded .row .col-6.el-rounded .choices__inner {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

label.separate.el-rounded .choices__inner {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

label.separate.dual input {
    width: calc(50% - 68px);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

label.separate.dual input:last-child {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

label.separate.dual.el-rounded input:nth-child(3) {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.form-group.checkbox {
    display: block;
}

.form-group.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group.checkbox label {
    position: relative;
    cursor: pointer;
    color: #fff;
}

.form-group.checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin: 0 5px 0 10px;
}

.form-group.checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    right: 14px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

label.important>span:after {
    content: "*";
    position: relative;
    top: -2px;
    color: #f54237;
}

label.data-confirmed input,
label.data-confirmed select,
label.data-confirmed textarea,
label.data-confirmed .choices__inner,
label.data-confirmed .button,
label.data-confirmed button {
    border-color: #46d64a;
}

label.data-confirmed:after {
    line-height: 10px;
    content: "تایید شده";
    position: absolute;
    top: -3px;
    left: 30px;
    color: #46d64a;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

label.data-pending input,
label.data-pending select,
label.data-pending textarea,
label.data-pending .choices__inner,
label.data-pending .button,
label.data-pending button {
    border-color: #fd9f2f;
}

label.data-pending:after {
    line-height: 10px;
    content: "در انتظار تایید";
    position: absolute;
    top: -3px;
    left: 30px;
    color: #fd9f2f;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

label.data-rejected input,
label.data-rejected select,
label.data-rejected textarea,
label.data-rejected .choices__inner,
label.data-rejected .button,
label.data-rejected button {
    border-color: #f54237;
}

label.data-rejected:after {
    line-height: 10px;
    content: "عدم تایید";
    position: absolute;
    top: -3px;
    left: 30px;
    color: #f54237;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

label.radio {
    max-height: 500px;
}

label .row {
    width: calc(100% - 114px);
    float: left;
    padding-left: 15px;
    white-space: nowrap;
}

label .row .col-4,
label .row .col-3,
label .row .col-6 {
    padding: 0;
}

label .row .col-4:first-child input,
label .row .col-3:first-child input,
label .row .col-6:first-child input,
label .row .col-4:first-child select,
label .row .col-3:first-child select,
label .row .col-6:first-child select,
label .row .col-4:first-child textarea,
label .row .col-3:first-child textarea,
label .row .col-6:first-child textarea,
label .row .col-4:first-child .choices__inner,
label .row .col-3:first-child .choices__inner,
label .row .col-6:first-child .choices__inner {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

label .row .col-4:last-child input,
label .row .col-3:last-child input,
label .row .col-6:last-child input,
label .row .col-4:last-child select,
label .row .col-3:last-child select,
label .row .col-6:last-child select,
label .row .col-4:last-child textarea,
label .row .col-3:last-child textarea,
label .row .col-6:last-child textarea,
label .row .col-4:last-child .choices__inner,
label .row .col-3:last-child .choices__inner,
label .row .col-6:last-child .choices__inner {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

label .row input,
label .row select,
label .row textarea {
    width: 100%;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

label .inlabelBtn {
    position: absolute;
    top: 10px;
    left: 20px;
    background: #f54237;
    color: #fff;
    padding: 0 10px;
    font-size: 10px;
    line-height: 25px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

label .inlabelBtn:hover {
    color: #fff;
    background: #e12e23;
}

label .inlabelBtn.info {
    background: #1a9ed4;
}

label .inlabelBtn.info:hover {
    background: #068ac0;
}

form .row,
.form .row {
    margin-bottom: 20px;
    line-height: 45px;
}

form .row:last-child,
.form .row:last-child {
    margin-bottom: 0;
}

form .row a.button,
.form .row a.button {
    line-height: 21.5px;
    text-align: center;
}

form hr,
.form hr,
.box hr {
    display: block;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 20px;
    width: 100%;
    height: 0;
}

input,
textarea,
select {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    background: #fff;
    width: 100%;
    height: auto;
    font-family: "iranyekanlight";
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.2);
    border-color: #ffd23f;
}

input[readonly],
textarea[readonly],
select[readonly] {
    cursor: not-allowed;
}

input[disabled],
textarea[disabled],
select[disabled] {
    cursor: not-allowed;
    background: #fafafa;
}

input[type="radio"],
textarea[type="radio"],
select[type="radio"],
input[type="checkbox"],
textarea[type="checkbox"],
select[type="checkbox"] {
    width: auto;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-left: 5px;
}

input.pulse,
textarea.pulse,
select.pulse {
    border-color: #f54237;
    box-shadow: 0 0 0 4px rgba(234, 67, 53, 0.15);
}

textarea {
    resize: vertical;
}

.choices__inner input {
    box-shadow: none !important;
    background: #fff !important;
}

.choices__list--multiple .choices__item {
    border-radius: 4px !important;
    background: #666 !important;
    border-color: #444 !important;
}

.choices__list--multiple .choices__item.is-highlighted {
    background: #444 !important;
}

button,
.button {
    display: block;
    padding: 13px 20px;
    background: #fdb743 linear-gradient(90deg, #fdb743, #fd9f2f) repeat-x;
    box-shadow: 0 4px 8px rgba(248, 175, 56, 0.2);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    height: auto;
    font-family: "iranyekanmedium";
    font-weight: normal;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

button i,
.button i {
    margin-right: 5px;
    position: relative;
    top: 2px !important;
    left: 0;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

button:hover:not(.loading),
.button:hover:not(.loading),
button:hover:not(.disabled),
.button:hover:not(.disabled) {
    color: #fff;
    box-shadow: 0 8px 15px rgba(248, 175, 56, 0.2) !important;
}

button:hover:not(.no-transition) i,
.button:hover:not(.no-transition) i,
button:hover:not(.loading) i,
.button:hover:not(.loading) i,
button:hover:not(.disabled) i,
.button:hover:not(.disabled) i {
    left: -5px;
}

button.disabled,
.button.disabled {
    cursor: not-allowed;
    opacity: 0.3;
    filter: alpha(opacity=30);
}

button.disabled i,
.button.disabled i {
    left: 0 !important;
}

button.loading,
.button.loading {
    cursor: wait;
}

button.loading i,
.button.loading i {
    animation-name: rotate;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

button.loading i.fad:before,
.button.loading i.fad:before {
    content: "\f3f4" !important;
}

button.loading i.fad:after,
.button.loading i.fad:after {
    content: "\f3f4" !important;
}

button.loading i.fal:before,
.button.loading i.fal:before {
    content: "\f3f4" !important;
}

button.inline,
.button.inline {
    display: inline-block;
    width: auto;
}

button.inline i,
.button.inline i {
    margin-right: 0;
}

button.inline:hover:not(.loading) i,
.button.inline:hover:not(.loading) i,
button.inline:hover:not(.disabled) i,
.button.inline:hover:not(.disabled) i {
    left: 0;
}

button.light,
.button.light {
    background: #fff !important;
    color: #444;
    border: 1px solid #eee;
    box-shadow: 0 4px 8px #eee;
}

button.light:hover:not(.loading),
.button.light:hover:not(.loading),
button.light:hover:not(.disabled),
.button.light:hover:not(.disabled) {
    color: #444;
    background: #fafafa !important;
    box-shadow: 0 8px 15px rgba(221, 221, 221, 0.5) !important;
}

button.primary,
.button.primary {
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x;
    box-shadow: 0 4px 8px rgba(26, 158, 212, 0.2);
}

button.primary:hover:not(.loading),
.button.primary:hover:not(.loading),
button.primary:hover:not(.disabled),
.button.primary:hover:not(.disabled) {
    box-shadow: 0 8px 15px rgba(26, 158, 212, 0.2) !important;
}

button.rounded,
.button.rounded {
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 32px;
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
}

button:active,
.button:active {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.toast {
    position: fixed;
    top: calc(100% + 20px);
    right: calc(50% - 200px);
    background: #f54237;
    padding: 15px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    z-index: 200;
    width: 400px;
    height: auto;
    font-family: "iranyekanlight";
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    opacity: 0;
    filter: alpha(opacity=0);
}

.toast i.icon {
    margin-left: 10px;
    font-size: 20px;
    display: none;
}

.toast i.close {
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
    color: rgba(50, 50, 50, 0.2);
    display: none;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.toast i.close:hover {
    color: rgba(50, 50, 50, 0.6);
}

.toast.wider {
    width: calc(100% - 60px);
    right: 30px;
    text-align: right;
}

.toast.wider i.icon {
    display: inline-block;
}

.toast.wider i.close {
    display: inline-block;
}

.toast.success {
    background: #46d64a;
}

.toast.notice {
    background: #1a9ed4;
}

.toast.active {
    opacity: 1;
    filter: alpha(opacity=100);
}

.notify-float {
    position: fixed;
    bottom: -100%;
    left: 20px;
    background: #fff;
    padding: 15px;
    color: #444;
    z-index: 200;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    width: 300px;
    height: 120px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.notify-float .closeNotifyBtn {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #aaa;
    cursor: pointer;
}

.notify-float .closeNotifyBtn:hover {
    color: #444;
}

.notify-float .icon {
    float: right;
    text-align: center;
    line-height: 95px;
    font-size: 50px;
    width: 90px;
    height: 90px;
}

.notify-float .icon i.fal.fa-share {
    color: #f54237;
}

.notify-float .icon i.fal.fa-reply {
    color: #46d64a;
}

.notify-float .content {
    float: left;
    padding-top: 20px;
    width: 180px;
    height: 90px;
}

.notify-float .content p.title {
    font-size: 12px;
}

.notify-float .content p.desc {
    font-size: 18px;
}

.notify-float .content p.desc b {
    font-family: "iranyekanbold";
    font-weight: normal;
}

.notify-float .content p.desc span {
    display: block;
    font-size: 12px;
}

.notify-float.active {
    bottom: 20px;
}

.notify-float.removing {
    left: -100%;
    opacity: 0;
    filter: alpha(opacity=0);
}

.notify-float.noShadow {
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.notify {
    padding: 5px 10px !important;
    line-height: 30px;
    border: 1px solid #eee;
    font-weight: bold;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.box-sub.notifications .notify.alarm {
    margin-bottom: 0px !important;
}

.box-sub.notifications .notify.alarm .label {
    background: #eee;
    padding: 2px 5px;
    border-radius: 3px;
    color: #838383;
    font-weight: 600;
}

.ticket-notes .notify,
.ticket-tracks .notify {
    margin-bottom: 10px !important;
}

.ticket-notes-list p a {
    color: #000;
    text-decoration: none;
}

.ticket-notes-list p a:hover {
    color: #333;
}

.tickets-count-badge {
    position: absolute;
    left: 30%;
    background: #cccccc;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
    border-radius: 50px;
}

.patterns-box {
    height: 300px;
    overflow-y: auto;
}

.patterns-box .pattern {
    background: #f1f2f4;
    border-right: 3px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.patterns-box .pattern:not(:last-of-type) {
    margin-bottom: 5px;
}

.patterns-box .pattern.active {
    background: #46d64a2e !important;
    border-right: 3px solid #46d64a !important;
}

.patterns-form {
    border-top: 1px dashed #eee;
    margin-top: 20px;
    padding: 20px 8px 0 8px;
}

.delete-ticket-pattern {
    height: 25px !important;
    margin: 0 0 0 10px !important;
    width: 25px !important;
    padding: 0px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.banReplyOnClosedTicketAlert,
.noNeedToReplyTicketAlert {
    background: #f1f2f4;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

#toggleAppendList {
    padding: 7px 10px !important;
}

#toggleTracksList,
.toggleList {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

#toggleTracksList i,
.toggleList i {
    margin: 0 !important;
}

.tickets-sort-status-box ul.tab-titles {
    display: flex !important;
    justify-content: space-around !important;
}

.tickets-sort-status-box ul.tab-titles li {
    display: inline-grid !important;
    min-width: 110px !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    color: #ccc;
    transition: 0.3s all;
}

.tickets-sort-status-box ul.tab-titles li:hover,
.tickets-sort-status-box ul.tab-titles li.active {
    color: #000;
    transition: 0.3s all;
}

.tickets-sort-status-box ul.tab-titles li svg {
    margin: 0 auto;
    transition: 0.3s all;
}

.tickets-sort-status-box ul.tab-titles li svg {
    fill: #ccc;
    transition: 0.3s all;
}

.tickets-sort-status-box ul.tab-titles li:hover svg,
.tickets-sort-status-box ul.tab-titles li.active svg {
    fill: #55c1ed;
    transition: 0.3s all;
}

.tickets-pagination,
.webservice-logs {
    margin: 50px 0 0 0 !important;
}

#appendList,
#followupDocumentCalls,
#followupDocumentMessages {
    display: none;
}

.followup-tracker-notes {
    margin-bottom: 5px;
}

.followup-tracker-notes .delete {
    height: 30px;
    background: #f54237;
    color: #fff;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
    align-items: center;
    padding: 0;
}

.followup-tracker-notes .delete i {
    margin-right: 0 !important;
    top: 0 !important;
}

.followup-labels-container {
    margin-top: 20px;
    background: #f7f7f7;
    border-radius: 5px;
    overflow-x: auto;
    line-height: 45px;
}

.followup-labels-container .label {
    margin-left: 10px;
    background: #e1dfdf;
    padding: 5px 10px;
    border-radius: 5px;
}

.followup-labels-container .label i {
    margin-right: 5px;
    color: #f54237;
    font-weight: 600;
}

.notify a {
    display: inline-block;
    color: #fff;
    padding: 0 3px;
    text-decoration: underline;
    font-weight: bold;
    font-family: "iranyekanlight";
}

.notify a:hover {
    color: #fafafa;
}

.notify:last-child {
    margin-bottom: 0;
}

.notify.error,
.notify.danger,
.notify.failed {
    background: #f54237;
    color: #fff;
    border-color: #f54237;
}

.notify.success {
    background: #46d64a;
    color: #fff;
    border-color: #46d64a;
}

.notify.notice {
    background: #1a9ed4;
    color: #fff;
    border-color: #1a9ed4;
}

.notify.offer {
    background: #46d64a;
    color: #fff;
    border-color: #46d64a;
}

.notify.warning {
    background: #fd9f2f;
    color: #fff;
    border-color: #fd9f2f;
}

.notify.mini {
    padding: 10px;
    font-size: 12px;
}

.notify-block {
    background: #fafafa;
    padding: 10px 15px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

a.notify-block:hover {
    color: unset;
}

.notify-block.error {
    background: #f54237;
    color: #fff;
    border-color: #f54237;
}

.notify-block.success {
    background: #46d64a;
    color: #fff;
    border-color: #46d64a;
}

.notify-block.notice {
    background: #1a9ed4;
    color: #fff;
    border-color: #1a9ed4;
}

.notify-block.offer {
    background: #46d64a;
    color: #fff;
    border-color: #46d64a;
}

.notify-block.warning {
    background: #fd9f2f;
    color: #fff;
    border-color: #fd9f2f;
}

.notify-block.alarm {
    background: #76e3ba linear-gradient(90deg, #b4ead6, #76e3ba) repeat-x;
    color: #15504f;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notify-block.alarm .countDown {
    display: inline-block;
    position: relative;
}

.notify-block.alarm .countDown ul {
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
}

.notify-block.alarm .countDown li {
    display: inline-block;
    font-size: 18px;
    list-style-type: none;
    width: 50px;
}

.notify-block.alarm .countDown li span {
    display: block;
    font-size: 18px;
    text-align: center;
}

.notify-block.alarm .countDown li:not(:last-child):after {
    content: ' : ';
    font-weight: 700;
    position: absolute;
    top: 0;
}

.notify-block.alarm .countDown li span:nth-child(2) {
    display: none;
}

.notify-block.alarm a.cta {
    background: #15504f;
    padding: 6px 20px;
    min-width: fit-content;
    border-radius: 5px;
    color: #fff;
}

.monitoring .notify label {
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    padding: 0 5px;
}

.monitoring .notify label a {
    text-decoration: none;
    color: #000;
}

.monitoring.box .title a {
    position: relative !important;
    float: left !important;
    margin-right: 10px !important;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.monitoring.box .title a i {
    margin-left: 0 !important;
}

#monitoring-send-sms {
    width: 35%;
    position: fixed;
    top: calc(100vh - 50px);
    box-sizing: border-box;
    left: 45%;
    transform: translate(-55%, 0);
    background: #fff;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 15px 1px #ccc;
    transition: 0.3s all;
}

#monitoring-send-sms.show {
    top: unset !important;
    bottom: 0px !important;
    transition: 0.3s all;
}

#monitoring-send-sms .header {
    cursor: pointer;
    position: absolute;
    top: 0;
    background: #fda534;
    right: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

#monitoring-send-sms .body {
    padding-top: 12%;
}

#troubleshoot-results .notify-message {
    text-align: justify;
}

.choices {
    display: inline-block;
    line-height: 17px !important;
    font-size: inherit !important;
    position: relative;
    width: 100% !important;
    top: -12px;
}

.not-inform .choices {
    top: -3px !important;
}

.choices * {
    transition: all 0s ease;
    -moz-transition: all 0s ease;
    -webkit-transition: all 0s ease;
    -ms-transition: all 0s ease;
    -o-transition: all 0s ease;
}

.choices.is-disabled .choices__inner {
    background: #fafafa !important;
}

.choices .choices__group .choices__heading {
    color: #333 !important;
    font-size: 16px !important;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.choices__inner {
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    border-radius: 4px !important;
    min-height: 35px !important;
}

.choices[data-type*="select-one"]::after {
    right: auto !important;
    left: 15px;
}

.choices__button {
    right: auto !important;
    left: 30px;
}

.light-gray {
    background: #f9f9f9 !important;
}

#modal {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 100000;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    -o-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#modal .centered {
    max-height: 100%;
}

#modal .box {
    background: #fff;
    width: 700px;
    box-shadow: 0 8px 50px rgba(52, 72, 107, 0.1);
    margin-bottom: 60px;
    margin-top: 60px;
    overflow: hidden;
}

#modal .box .title {
    border-bottom: 1px solid #eee;
    margin: -30px -30px 20px -30px;
    padding: 20px 30px 15px 30px;
    white-space: nowrap;
}

#modal .box .title:before {
    top: 18px;
    right: 0;
    height: 60px;
}

#modal .box .title i {
    position: absolute;
    left: 30px;
    top: 31px;
    cursor: pointer;
    font-size: 36px;
    color: #ddd;
}

#modal .box .title i:hover {
    color: #aaa;
}

#modal .box ul {
    list-style: none;
}

#modal .box ul.bigItems {
    font-size: 16px;
}

#modal .box ul.bigItems li {
    margin-bottom: 5px;
}

#modal .box ul.bigItems li a {
    padding: 15px;
    display: block;
    background: #fafafa;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#modal .box ul.bigItems li i {
    position: relative;
    top: 4px;
    font-size: 26px;
    margin-left: 10px;
}

#modal.active {
    visibility: visible;
    transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-title {
    margin-bottom: 20px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.form-title .subtitle {
    text-align: justify;
    font-size: 12px;
}

.form-title .subtitle b {
    font-weight: 600 !important;
    color: #f54237;
}

.form-title:before {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    margin-left: 10px;
}

.form-title a.button {
    float: left;
    padding: 0 10px;
    margin-top: -2px;
}

.form-desc {
    margin-top: -20px;
    margin-bottom: 20px;
    margin-right: 22px;
}

.pay-box .form-desc {
    text-align: justify;
    color: #a8a8a8;
}

.tag {
    background: #eee;
    line-height: inherit;
    padding: 5px 15px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tag i {
    background: #ddd;
    line-height: 29px;
    padding: 0 10px;
    margin-left: -15px;
    margin-right: 10px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.tag i:hover {
    background: #f54237;
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.01);
    }

    51% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

.file-uploader input {
    display: none;
}

.file-uploader .watch-file {
    position: absolute;
    left: 17px;
    top: 5px;
    width: auto;
    line-height: 10px !important;
    height: 37px;
}

.file-uploader .watch-file i {
    top: 0 !important;
}

.file-uploader .watch-file:hover i {
    left: 0;
}

.file-uploader button.has-value {
    text-align: right;
}

.file-uploader.important>button:not(.primary):before {
    content: "*";
    position: relative;
    top: -2px;
    right: -2px;
    color: #f54237;
}

.file-uploader.disabled button {
    background: #fafafa !important;
    cursor: not-allowed;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.file-uploader.data-confirmed input,
.file-uploader.data-confirmed select,
.file-uploader.data-confirmed textarea,
.file-uploader.data-confirmed .choices__inner,
.file-uploader.data-confirmed .button,
.file-uploader.data-confirmed button {
    border-color: #46d64a;
}

.file-uploader.data-confirmed:after {
    line-height: 10px;
    content: "تایید شده";
    position: absolute;
    top: -3px;
    left: 30px;
    color: #46d64a;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.file-uploader.data-pending input,
.file-uploader.data-pending select,
.file-uploader.data-pending textarea,
.file-uploader.data-pending .choices__inner,
.file-uploader.data-pending .button,
.file-uploader.data-pending button {
    border-color: #fd9f2f;
}

.file-uploader.data-pending:after {
    line-height: 10px;
    content: "در انتظار بررسی";
    position: absolute;
    top: -3px;
    left: 30px;
    color: #fd9f2f;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.file-uploader.data-rejected input,
.file-uploader.data-rejected select,
.file-uploader.data-rejected textarea,
.file-uploader.data-rejected .choices__inner,
.file-uploader.data-rejected .button,
.file-uploader.data-rejected button {
    border-color: #f54237;
}

.file-uploader.data-rejected:after {
    line-height: 10px;
    content: "عدم تایید";
    position: absolute;
    top: -3px;
    left: 30px;
    color: #f54237;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.colorSuccess {
    color: #46d64a;
}

.colorAlert {
    color: #f54237;
}

.colorAlertBold {
    color: #f54237;
    font-weight: 600;
}

.colorWarning {
    color: #fd9f2f;
}

.colorInfo {
    color: #1a9ed4;
}

.colorDark {
    color: #222 !important;
}

.bgWarning {
    color: #fff !important;
    background: #fd9f2f !important;
}

.bgWarning:hover {
    background: #e98b1b !important;
}

.dialog {
    background: rgba(50, 50, 50, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    text-align: center;
    z-index: 101;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.dialog .dbox {
    background: #fff;
    position: absolute;
    top: 20%;
    left: 50%;
    padding: 30px 30px;
    border-top: solid 7px #1a9ed4;
    color: #777;
    width: 400px;
    height: auto;
    max-height: 100vh;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.dialog .dbox .icon {
    font-size: 65px;
    color: #1a9ed4;
    margin-bottom: -10px;
}

.dialog .dbox h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.dialog .dbox .dcontent {
    line-height: 30px;
}

.dialog .dbox .dcontent input,
.dialog .dbox .dcontent textarea,
.dialog .dbox .dcontent select {
    box-shadow: none;
}

.dialog .dbox .dcontent select {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    margin: 10px 0;
    font-family: "iranyekanmedium";
    font-weight: normal;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dialog .dbox .dcontent button {
    line-height: 10px;
    margin: 0 8px;
}

.dialog .label {
    background: #eee;
    padding: 5px 8px;
    white-space: nowrap;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dialog .label.success {
    background: #46d64a;
    color: #fff;
}

.dialog .label.alert {
    background: #f54237;
    color: #fff;
}

.dialog .label.warning {
    background: #fd9f2f;
    color: #fff;
}

.dialog .label.info {
    background: #1a9ed4;
    color: #fff;
}

.dialog input.inline {
    display: inline-block !important;
    text-align: center;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.dialog input.inline:first-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.dialog input.inline:last-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.dialog.warning .dbox {
    border-top-color: #fd9f2f;
}

.dialog.warning .dbox .icon {
    color: #fd9f2f;
}

.dialog.active {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

.dialog.active .dbox {
    top: 50%;
}

.dialog.loading .dbox:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    cursor: wait;
    width: 100%;
    height: 100%;
}

[dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    padding-left: 10px !important;
}

.font-light-bold {
    font-weight: bold;
    font-family: "iranyekanlight";
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.info-bold {
    color: #23a0d3;
    font-weight: 800;
}

.relative-box {
    position: relative;
}

.font-half {
    font-size: 80%;
    color: #999;
    margin-top: -10px;
    line-height: 20px;
}

.icon-main {
    font-size: 100px;
    color: #46d64a;
    margin-bottom: 20px;
}

.datepicker-plot-area {
    font-size: 14px;
    font-family: "iranyekanlight";
}

.datepicker {
    direction: ltr;
}

.datepicker[readonly] {
    cursor: pointer !important;
}

.circle {
    background: #ddd;
    margin: 7px auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.circle.success {
    background: #46d64a;
}

.circle.warning {
    background: #fd9f2f;
}

.circle.alert {
    background: #f54237;
}

.bootstrap-wrapper .col-1,
.bootstrap-wrapper .col-2,
.bootstrap-wrapper .col-3,
.bootstrap-wrapper .col-4,
.bootstrap-wrapper .col-5,
.bootstrap-wrapper .col-6,
.bootstrap-wrapper .col-7,
.bootstrap-wrapper .col-8,
.bootstrap-wrapper .col-9,
.bootstrap-wrapper .col-10,
.bootstrap-wrapper .col-11,
.bootstrap-wrapper .col-12,
.bootstrap-wrapper .col,
.bootstrap-wrapper .col-auto,
.bootstrap-wrapper .col-sm-1,
.bootstrap-wrapper .col-sm-2,
.bootstrap-wrapper .col-sm-3,
.bootstrap-wrapper .col-sm-4,
.bootstrap-wrapper .col-sm-5,
.bootstrap-wrapper .col-sm-6,
.bootstrap-wrapper .col-sm-7,
.bootstrap-wrapper .col-sm-8,
.bootstrap-wrapper .col-sm-9,
.bootstrap-wrapper .col-sm-10,
.bootstrap-wrapper .col-sm-11,
.bootstrap-wrapper .col-sm-12,
.bootstrap-wrapper .col-sm,
.bootstrap-wrapper .col-sm-auto,
.bootstrap-wrapper .col-md-1,
.bootstrap-wrapper .col-md-2,
.bootstrap-wrapper .col-md-3,
.bootstrap-wrapper .col-md-4,
.bootstrap-wrapper .col-md-5,
.bootstrap-wrapper .col-md-6,
.bootstrap-wrapper .col-md-7,
.bootstrap-wrapper .col-md-8,
.bootstrap-wrapper .col-md-9,
.bootstrap-wrapper .col-md-10,
.bootstrap-wrapper .col-md-11,
.bootstrap-wrapper .col-md-12,
.bootstrap-wrapper .col-md,
.bootstrap-wrapper .col-md-auto,
.bootstrap-wrapper .col-lg-1,
.bootstrap-wrapper .col-lg-2,
.bootstrap-wrapper .col-lg-3,
.bootstrap-wrapper .col-lg-4,
.bootstrap-wrapper .col-lg-5,
.bootstrap-wrapper .col-lg-6,
.bootstrap-wrapper .col-lg-7,
.bootstrap-wrapper .col-lg-8,
.bootstrap-wrapper .col-lg-9,
.bootstrap-wrapper .col-lg-10,
.bootstrap-wrapper .col-lg-11,
.bootstrap-wrapper .col-lg-12,
.bootstrap-wrapper .col-lg,
.bootstrap-wrapper .col-lg-auto,
.bootstrap-wrapper .col-xl-1,
.bootstrap-wrapper .col-xl-2,
.bootstrap-wrapper .col-xl-3,
.bootstrap-wrapper .col-xl-4,
.bootstrap-wrapper .col-xl-5,
.bootstrap-wrapper .col-xl-6,
.bootstrap-wrapper .col-xl-7,
.bootstrap-wrapper .col-xl-8,
.bootstrap-wrapper .col-xl-9,
.bootstrap-wrapper .col-xl-10,
.bootstrap-wrapper .col-xl-11,
.bootstrap-wrapper .col-xl-12,
.bootstrap-wrapper .col-xl,
.bootstrap-wrapper .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px;
}

.box {
    z-index: 2;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page {
    height: 100%;
}

.page.form .content {
    width: 400px;
}

.page.form .icon {
    margin: 0 auto;
    width: 35%;
    height: auto;
}

.page.form .box {
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.form .box h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.page.form .box h2 {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
    font-family: "iranyekanlight";
}

.page.form ul.links {
    background: #eee;
    position: absolute;
    bottom: 0;
    right: 0;
    list-style-type: none;
    font-size: 12px;
    padding: 0 10px;
    width: 100%;
    height: auto;
    box-shadow: 0 0 5px rgba(50, 50, 50, 0.15);
}

.page.form ul.links li {
    color: #999;
    display: inline-block;
    padding: 15px 15px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.form ul.links li a {
    display: inline-block;
    color: #999;
}

.page.form ul.links li a:hover {
    color: #222;
}

.page.form ul.links li.left {
    float: left;
}

.page.panel {
    overflow-x: hidden;
    overflow-y: scroll;
}

.page.panel aside {
    position: fixed;
    background: #fff;
    width: 250px;
    height: 100%;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel aside .user {
    display: block;
    background: #6ccff6 url(images/network.svg) no-repeat top;
    position: relative;
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    width: 100%;
    height: 210px;
}

.page.panel aside .user:after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    background: url(images/wave.svg) repeat-x bottom;
    background-size: 150% 150%;
    width: 100%;
    height: 16px;
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

.page.panel aside .user .avatar {
    width: 90px;
    height: 90px;
}

.page.panel aside .user .avatar .progress {
    position: absolute;
    top: 0;
    right: -10px;
    background: #ffe36b;
    color: #ac871e;
    text-align: center;
    line-height: 37px;
    font-size: 12px;
    width: 35px;
    height: 35px;
    font-family: "iranyekanmedium";
    font-weight: normal;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page.panel aside .user h3,
.page.panel aside .user p {
    text-shadow: 0 0 5px #555;
    white-space: nowrap;
}

.page.panel aside .user h3 {
    font-size: 18px;
    margin-bottom: 3px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel aside .user p {
    font-family: "iranyekanlight";
}

.page.panel aside .user.small {
    height: auto;
    padding: 30px 10px 35px 10px;
}

.page.panel aside ul {
    list-style-type: none;
    overflow-y: auto;
    height: calc(100% - 270px);
}

.page.panel aside ul li {
    display: block;
    padding: 5px 5px 0 5px;
    font-size: 15px;
    position: relative;
}

.page.panel aside ul li:before {
    content: "";
    position: absolute;
    top: 15px;
    right: -5px;
    background: #666;
    width: 5px;
    height: 30px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel aside ul li a {
    display: block;
    padding: 8px 8px 10px 8px;
    font-weight: bold;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-family: "iranyekanlight";
}

.page.panel aside ul li i {
    text-align: center;
    line-height: 30px;
    margin-left: 5px;
    width: 30px;
    height: 30px;
}

.page.panel aside ul li span.badge {
    display: block;
    background: #eee;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 19px;
    font-size: 12px;
    line-height: 23px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page.panel aside ul li.active {
    color: #077fb0;
}

.page.panel aside ul li.active:before {
    right: 0;
    background: #077fb0;
}

.page.panel aside ul li.active a {
    color: #077fb0;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel aside ul li:hover:not(.soon):before {
    right: 0;
}

.page.panel aside ul li.sep {
    border-bottom: 1px solid #eee;
}

.page.panel aside ul li.sep:before {
    display: none;
}

.page.panel aside ul li.soon:after {
    content: "بزودی";
    position: absolute;
    left: 10px;
    top: 26px;
    background: #ffe36b;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 32px;
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
}

.page.panel aside ul li.soon a {
    color: inherit;
    cursor: default;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.page.panel aside ul li.pulse i {
    background: #f54237;
    color: #fff;
    position: relative;
    top: 3px;
    transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page.panel aside ul.adminPanel {
    height: calc(100% - 180px);
}

.page.panel aside nav.top {
    position: relative;
    z-index: 1;
}

.page.panel aside.v2 {
    font-weight: normal;
    box-shadow: 0 0 70px rgba(50, 50, 50, 0.08);
}

.page.panel aside.v2 nav.top {
    background: #fff;
    width: 250px;
}

.page.panel aside.v2 ul {
    height: calc(100% - 150px);
    padding: 10px;
    background: #fff;
    font-size: 14px;
}

.page.panel aside.v2 ul li:before {
    display: none;
}

.page.panel aside.v2 ul li a {
    font-weight: bold;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.page.panel aside.v2 ul li a i {
    top: 0;
    background: #f5f5f5;
    margin-left: 10px;
    font-size: 16px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel aside.v2 ul li.active a {
    color: #fff !important;
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x !important;
    box-shadow: 0 4px 8px rgba(26, 158, 212, 0.2);
    font-family: "iranyekanlight";
}

.page.panel aside.v2 ul li.active a i {
    background: #76d9ff;
    transform: scale(1, 1);
}

.page.panel aside.v2 ul li:hover:not(.active) a {
    color: #333;
}

.page.panel aside.v2 ul li:hover:not(.active) a i {
    background: #e5e5e5;
    transform: scale(1.1, 1.1) !important;
}

.page.panel aside.v2 ul li.pulse a i {
    background: #f54237 !important;
    transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
}

.page.panel aside.v2 .subLinks {
    position: relative;
    z-index: 1;
    padding: 20px 25px;
    background: #fff;
    width: 250px;
    height: auto;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel aside.v2 .subLinks a {
    display: block;
    background: #f5f5f5;
    text-align: center;
    padding: 13px;
    font-size: 18px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.page.panel aside.v2 ul li.disabled-action a {
    pointer-events: none;
    cursor: not-allowed;
    background: #e9e9e9;
    color: #737373 !important;
}

.page.panel aside.v2 ul li.disabled-action a i,
.page.panel aside.v2 ul li.disabled-action:hover:not(.active) a i {
    transform: unset !important;
}

.page.panel article {
    position: relative;
    float: left;
    width: calc(100% - 250px);
    height: auto;
}

.page.panel article>.content {
    max-width: 1100px;
    width: calc(100% - 120px);
    margin: 30px auto 90px auto;
}

.page.panel article>.content .head {
    padding: 20px 0;
    margin-bottom: 20px;
}

.page.panel article>.content .head h1 {
    font-size: 24px;
}

.page.panel article>.content .head .actions {
    float: left;
    margin-top: -55px;
}

.page.panel article>.content .head a.button {
    padding: 15px 20px;
    margin-right: 20px;
}

.page.panel article>.content .head a.button i {
    margin: 0;
    font-size: 20px;
}

.page.panel article>.content ul.list {
    list-style: none;
    line-height: 34px;
}

.page.panel article>.content ul.list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin: 0;
    align-items: center !important;
    border-right: 3px solid transparent;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content ul.list li .button {
    padding: 0 10px;
    min-width: 38px;
}

.page.panel article>.content ul.list li input {
    padding: 5px 10px;
    box-shadow: 0 4px 8px #eee;
}

.page.panel article>.content ul.list li .label {
    background: #eee;
    padding: 5px 8px;
    white-space: nowrap;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .notifications ul.list li .label {
    padding: 0px 10px !important;
}

.page.panel article>.content .notifications .notification-info {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.page.panel article>.content .notification-content .label {
    background: #eee;
    padding: 2px 5px;
    border-radius: 3px;
    color: #838383;
    font-weight: 600;
}

.page.panel article>.content .notification-sales-form .separate span,
.page.panel article>.content .notification-sales-form .separate input,
.page.panel article>.content .notification-sales-form .separate .choices {
    width: 50% !important;
}

.page.panel article>.content ul.list li .label.success {
    background: #46d64a;
    color: #fff;
}

.page.panel article>.content ul.list li .label.alert {
    background: #f54237;
    color: #fff;
}

.page.panel article>.content ul.list li .label.warning {
    background: #fd9f2f;
    color: #fff;
}

.page.panel article>.content ul.list li .label.info {
    background: #1a9ed4;
    color: #fff;
}

.page.panel article>.content ul.list li .label.info-light {
    background: #1a9ed42e;
    border: 1px solid #1a9ed438;
    padding: 2px 10px;
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 5px #1a9ed447;
}

.page.panel article>.content ul.list li .label.inline {
    display: inline-block;
    padding: 0 10px !important;
}

.page.panel article>.content ul.list li .verticalCenter {
    position: relative;
}

.page.panel article>.content ul.list li .verticalCenter .button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

.page.panel article>.content ul.list li .verticalCenter .symbol {
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

.page.panel article>.content ul.list li.first {
    font-weight: bold;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel article>.content ul.list li:first-child {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.page.panel article>.content ul.list li:last-child {
    border-bottom: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.page.panel article>.content ul.list li.info {
    background: rgba(26, 158, 212, 0.1) !important;
    border-right-color: #1a9ed4;
}

.page.panel article>.content ul.list li.success {
    background: rgba(70, 214, 74, 0.1) !important;
    border-right-color: #46d64a;
}

.page.panel article>.content ul.list li.warning {
    background: rgba(253, 183, 67, 0.1) !important;
    border-right-color: #fdb743;
}

.page.panel article>.content ul.list li.error {
    background: rgba(245, 66, 55, 0.1) !important;
    border-right-color: #f54237;
}

.page.panel article>.content ul.list li.disabled {
    background: #f7f7f7;
    border-right-color: #ccc;
}

.page.panel article>.content ul.list li:hover:not(.first) {
    background: #f8f8f8;
}

.page.panel article>.content ul.list.full {
    margin: -30px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content ul.list.has-bg {
    background: #fafafa;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content ul.list.has-bg li:hover {
    background: #eee;
}

.page.panel article>.content ul.list-box {
    list-style: none;
    line-height: 34px;
    margin: -20px;
}

.page.panel article>.content ul.list-box li {
    border: 1px solid #eee;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content ul.list-box li .label {
    background: #eee;
    padding: 5px 8px;
    white-space: nowrap;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content ul.list-box li .label.success {
    background: #46d64a;
    color: #fff;
}

.page.panel article>.content ul.list-box li .label.alert {
    background: #f54237;
    color: #fff;
}

.page.panel article>.content ul.list-box li .label.warning {
    background: #fd9f2f;
    color: #fff;
}

.page.panel article>.content ul.list-box li .label.info {
    background: #1a9ed4;
    color: #fff;
}

.page.panel article>.content ul.list-box li.first {
    border: none;
    cursor: default;
    color: #999;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel article>.content ul.list-box li.active {
    color: #fff !important;
    background: #1a9ed4 !important;
    border-color: #1a9ed4 !important;
}

.page.panel article>.content ul.list-box li.active .label {
    background: #077fb0 !important;
}

.page.panel article>.content ul.list-box li:hover:not(.first) {
    background: #fafafa;
    border-color: #ddd;
}

.page.panel article>.content ul.list-box li:last-child {
    margin-bottom: 0;
}

.page.panel article>.content .pagination {
    margin: -15px 0;
}

.page.panel article>.content .pagination a i {
    position: relative;
    top: 2px;
}

.page.panel article>.content .pagination a.disabled {
    cursor: not-allowed;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.page.panel article>.content .pagination.inBox {
    margin: 0;
}

.page.panel article>.content .tab {
    padding: 30px;
    margin: -30px;
    overflow: hidden;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .tab ul.tab-titles {
    list-style: none;
    white-space: nowrap;
    text-align: center;
    margin: -30px -30px 30px -30px;
    border-bottom: 1px solid #eee;
    position: relative;
    background: #fafafa;
}

.page.panel article>.content .tab ul.tab-titles li {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 25px 15px;
    color: #aaa;
    font-family: "iranyekanmedium";
    font-weight: normal;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .tab ul.tab-titles li i {
    font-size: 26px;
    color: #ddd;
    margin-top: 10px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .tab ul.tab-titles li.active {
    color: #333;
}

.page.panel article>.content .tab ul.tab-titles li.active i {
    color: #888;
}

.page.panel article>.content .tab ul.tab-titles .mover {
    position: absolute;
    bottom: -1px;
    left: 100%;
    background: #333;
    width: auto;
    height: 2px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .tab .tab-contents .item {
    padding: 30px;
    margin: -30px;
    display: none;
}

.page.panel article>.content .tab .tab-contents .item.active {
    display: block;
}

.page.panel article>.content .tab .tab-contents .item.loading {
    position: relative;
    min-height: 200px;
}

.page.panel article>.content .tab .tab-contents .item.loading:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
    width: 100%;
    height: 100%;
}

.page.panel article>.content .tab .tab-contents .item.loading:after {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    right: calc(50% - 10px);
    background: #999;
    z-index: 2;
    width: 20px;
    height: 20px;
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page.panel article>.content .tab.box-rounded {
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.page.panel article>.content .icon-box {
    text-align: center;
    padding: 60px 20px 60px 20px;
    position: relative;
    overflow: hidden;
}

.page.panel article>.content .icon-box.with-no-border {
    background: #fdfdfd !important;
    box-shadow: none !important;
}

.page.panel article>.content .icon-box i.icon {
    font-size: 110px;
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 0;
    opacity: 0.1;
    filter: alpha(opacity=10);
}

.page.panel article>.content .icon-box h3 {
    font-size: 20px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel article>.content .icon-box .button {
    margin-top: 30px;
    padding: 10px 40px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.page.panel article>.content .icon-box * {
    position: relative;
    z-index: 1;
}

.page.panel article>.content .demp-part {
    margin: 50px auto 0;
    text-align: center;
    font-weight: 600;
}

.page.panel article>.content .demp-part img {
    width: 85%;
    display: block;
    margin: 15px auto;
    border-radius: 25px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 15px 0px #ccc;
}

.page.panel article>.content .trunk-list.loading {
    position: relative;
    min-height: 200px;
}

.page.panel article>.content .trunk-list.loading:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
    width: 100%;
    height: 100%;
}

.page.panel article>.content .trunk-list.loading:after {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    right: calc(50% - 10px);
    background: #999;
    z-index: 2;
    width: 20px;
    height: 20px;
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page.panel article>.content .pay-box {
    margin-bottom: 30px;
    margin-top: 30px;
}

.page.panel article>.content .pay-box .row {
    line-height: 30px;
}

.page.panel article>.content .pay-box .radio,
.page.panel article>.content #profileMain .radio,
.page.panel article>.content #wizardProfileForm .radio {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .pay-box .radio.disabled,
.page.panel article>.content #profileMain .radio.disabled,
.page.panel article>.content #wizardProfileForm .radio.disabled {
    background: #f8f8f8;
    cursor: not-allowed;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.page.panel article>.content .pay-box .radio.active,
.page.panel article>.content #profileMain .radio.active,
.page.panel article>.content #wizardProfileForm .radio.active {
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x;
    box-shadow: 0 4px 8px rgba(26, 158, 212, 0.2) !important;
    color: #fff;
}

.page.panel article>.content .pay-box .radio.active *,
.page.panel article>.content #profileMain .radio.active *,
.page.panel article>.content #wizardProfileForm .radio.active * {
    color: #fff !important;
}

.page.panel article>.content .pay-box .radio:hover:not(.disabled),
.page.panel article>.content #profileMain .radio:hover:not(.disabled),
.page.panel article>.content #wizardProfileForm .radio:hover:not(.disabled) {
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel article>.content .pay-box .radio input,
.page.panel article>.content #profileMain .radio input,
.page.panel article>.content #wizardProfileForm .radio input {
    display: none;
}

.page.panel article>.content .pay-box .radio p,
.page.panel article>.content #profileMain .radio p,
.page.panel article>.content #wizardProfileForm .radio p {
    font-size: 16px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel article>.content .pay-box .radio p.desc,
.page.panel article>.content #profileMain .radio p.desc,
.page.panel article>.content #wizardProfileForm .radio p.desc {
    font-size: 14px;
    color: #888;
    font-family: "iranyekanlight";
}

.page.panel article>.content .pay-box .radio.radio-row {
    text-align: right;
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 10px !important;
    font-family: "iranyekanlight";
}

.page.panel article>.content #profileMain .radio.radio-row,
.page.panel article>.content #wizardProfileForm .radio.radio-row {
    text-align: right;
    padding: 0px 20px;
    font-size: 14px;
    margin-bottom: 10px !important;
    font-family: "iranyekanlight";
}

.page.panel article>.content .pay-box .radio.radio-row i,
.page.panel article>.content #profileMain .radio.radio-row i,
.page.panel article>.content #wizardProfileForm .radio.radio-row i {
    color: #999;
    margin-left: 8px;
}

.page.panel article>.content .pay-box .radio.radio-row i.fad,
.page.panel article>.content #profileMain .radio.radio-row i.fad,
.page.panel article>.content #wizardProfileForm .radio.radio-row i.fad {
    position: relative;
    top: 2px;
}

.page.panel article>.content .pay-box .radio.radio-row p,
.page.panel article>.content #profileMain .radio.radio-row p,
.page.panel article>.content #wizardProfileForm .radio.radio-row p {
    font-size: 14px;
    font-family: "iranyekanlight";
}

.page.panel article>.content .pay-box .radio.radio-row p b,
.page.panel article>.content #profileMain .radio.radio-row p b,
.page.panel article>.content #wizardProfileForm .radio.radio-row p b {
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .pay-box .radio.radio-row p span,
.page.panel article>.content #profileMain .radio.radio-row p span,
.page.panel article>.content #wizardProfileForm .radio.radio-row p span {
    color: #999;
    font-size: 12px;
    padding-right: 10px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .pay-box .radio.radio-row p span.price {
    float: left;
    width: 100px;
    text-align: center;
    background: #eee;
    padding-left: 10px;
    margin-left: -10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .pay-box .radio.radio-row.active,
.page.panel article>.content #profileMain .radio.radio-row.active,
.page.panel article>.content #wizardProfileForm .radio.radio-row.active {
    background: #fff;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08) !important;
    border-color: #46d64a;
    color: #333;
}

.page.panel article>.content .pay-box .radio.radio-row.active *,
.page.panel article>.content #profileMain .radio.radio-row.active *,
.page.panel article>.content #wizardProfileForm .radio.radio-row.active * {
    color: #333 !important;
}

.page.panel article>.content .pay-box .radio.radio-row.active i,
.page.panel article>.content #profileMain .radio.radio.radio-row.active i,
.page.panel article>.content #wizardProfileForm .radio.radio.radio-row.active i {
    color: #46d64a !important;
}

.page.panel article>.content .pay-box .radio.radio-row.active p b,
.page.panel article>.content #profileMain .radio.radio.radio-row.active p b,
.page.panel article>.content #wizardProfileForm .radio.radio.radio-row.active p b {
    color: #46d64a !important;
}

.page.panel article>.content .pay-box .radio.radio-row.active p span,
.page.panel article>.content #profileMain .radio.radio.radio-row.active p span,
.page.panel article>.content #wizardProfileForm .radio.radio.radio-row.active p span {
    color: #999 !important;
}

.plans .radio.radio-row span.price,
.page.panel article>.content .pay-box .radio.radio-row.active p span.price {
    background: #46d64a !important;
    color: #fff !important;
    width: 100px;
    text-align: center;
}

.page.panel article>.content .pay-box .radio.radio-row.active p span.price.crossed-price,
.page.panel article>.content .pay-box span.crossed-price {
    background: #f542371c !important;
    color: #000 !important;
    position: relative !important;
    margin-left: 10px !important;
}

.page.panel article>.content .crossed-price::after {
    content: ' ';
    width: 95%;
    height: 2px;
    background: #f5403794;
    position: absolute;
    transform: rotate(-15deg) translate(50%, 8px);
    right: 50%;
    top: 14px;
}

.page.panel article>.content .receipt-box {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 30px;
    background: #fafafa;
    font-size: 16px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .receipt-box .row {
    padding-top: 5px;
    padding-bottom: 5px;
}

.page.panel article>.content .receipt-box .row.sum {
    padding: 15px 10px;
    background: #fff;
    margin: 10px -20px -20px -20px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.page.panel article>.content .duration-prices .item {
    padding: 10px 5px;
    border: 1px solid #eee;
    background: #fafafa;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .duration-prices .item h4 {
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: -10px -5px 0 -5px;
    background: #fff;
    font-family: "iranyekanmedium";
    font-weight: normal;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.page.panel article>.content .duration-prices .item h5 {
    font-size: 14px;
    padding: 7px 0;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel article>.content .duration-prices .item p {
    padding: 0 0 10px 0;
    margin-bottom: -10px;
    color: #999;
    font-size: 12px;
}

.page.panel article>.content .duration-prices .item p span {
    display: block;
    font-size: 20px;
    color: #077fb0;
    font-family: "iranyekanbold";
    font-weight: normal;
}

.page.panel article>.content .duration-prices .item p del {
    color: #f54237;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel article>.content .duration-prices .item p i {
    font-size: 14px;
    color: #999;
}

.page.panel article>.content .duration-prices .item p.tall {
    padding: 22px 0 32px 0;
}

.page.panel article>.content .services-box {
    padding: 10px;
}

.page.panel article>.content .services-box .actions {
    float: right;
    width: 120px;
    height: 50px;
}

.page.panel article>.content .services-box .actions a {
    display: block;
    float: right;
    margin-left: 10px;
    background: #fafafa;
    padding: 5px 10px;
    font-size: 12px;
    overflow: hidden;
    text-align: center;
    line-height: 50px;
    font-family: "iranyekanmedium";
    font-weight: normal;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    width: 50px;
    height: 50px;
}

.page.panel article>.content .services-box .actions a i {
    font-size: 20px;
}

.page.panel article>.content .services-box .actions a.warning {
    background: #fd9f2f;
    color: #fff;
}

.page.panel article>.content .services-box .actions a.warning:hover {
    background: #e98b1b;
}

.page.panel article>.content .services-box .actions a.success {
    background: #46d64a;
    color: #fff;
}

.page.panel article>.content .services-box .actions a.success:hover {
    background: #32c236;
}

.page.panel article>.content .services-box .actions a:hover {
    background: #eee;
}

.page.panel article>.content .services-box .selected {
    float: left;
    padding: 10px;
    cursor: default;
    width: calc(100% - 120px);
    height: 50px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel article>.content .services-box .selected .icon {
    margin-right: 10px;
    position: relative;
    top: 2px;
    color: #46d64a;
    font-size: 16px;
}

.page.panel article>.content .services-box .selected h3 {
    display: inline-block;
    padding: 0 5px;
}

.page.panel article>.content .services-box .selected .button {
    font-size: 12px;
    float: left;
    line-height: 20px;
    padding: 5px 20px !important;
}

.page.panel article>.content .services-box-list {
    background: #fafafa;
    font-size: 16px;
}

.page.panel article>.content .services-box-list .item {
    display: block;
    background: #fff;
    padding: 15px 20px;
    line-height: 36px;
    font-family: "iranyekanlight";
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.page.panel article>.content .services-box-list .item .label {
    background: #eee;
    display: block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .services-box-list .item .label.success {
    background: #1a9ed4;
    color: #fff;
}

.page.panel article>.content .services-box-list .item .label.warning {
    background: #fd9f2f;
    color: #fff;
}

.page.panel article>.content .services-box-list .item .label .mobile-label {
    display: none;
}

.page.panel article>.content .services-box-list .item:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.page.panel article>.content .service-head-box {
    background: #ffe36b;
    border: 2px solid #fff;
    padding: 50px;
}

.page.panel article>.content .service-head-box .col-3 {
    text-align: center;
}

.page.panel article>.content .service-head-box i {
    font-size: 60px;
}

.page.panel article>.content .service-head-box h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.page.panel article>.content .service-head-box p {
    font-size: 16px;
    display: inline-block;
    background: #ffd45b;
    padding: 0 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .charge-box {
    background: #f9f9f9;
    padding-bottom: 0;
}

.page.panel article>.content .charge-box .item {
    display: block;
    text-align: center;
    padding: 20px 10px;
    border: 1px dashed #eee;
    background: #fff;
    line-height: 34px;
    font-weight: bold;
    border-bottom: 4px solid #ddd;
    margin-bottom: 30px;
    font-family: "iranyekanlight";
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .charge-box .item h3 {
    font-size: 20px;
    background: #ffe36b;
    color: #ac871e;
    display: inline-block;
    padding: 5px 20px;
    margin: 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .charge-box .item p {
    color: #333;
}

.page.panel article>.content .charge-box .item .fade {
    color: #999;
}

.page.panel article>.content .charge-box .item.alert {
    border-bottom-color: #f54237;
}

.page.panel article>.content .charge-box .item.alert h3 {
    background: #f54237;
    color: #fff;
}

.page.panel article>.content .charge-box .item:hover {
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel article>.content .package-box {
    background: #f9f9f9;
    padding-bottom: 0;
}

.page.panel article>.content .package-box .item {
    display: block;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border: 1px solid #eee;
    background: #fff;
    line-height: 34px;
    font-weight: bold;
    border-bottom: 4px solid #ddd;
    margin-bottom: 30px;
    position: relative;
    font-family: "iranyekanlight";
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel article>.content .package-box .item h3 {
    font-size: 20px;
    color: #444;
    background: #fafafa;
    display: inline-block;
    padding: 5px 20px;
    margin: 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .package-box .item p {
    color: #666;
}

.page.panel article>.content .package-box .item .benefit {
    color: #46d64a;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel article>.content .package-box .item .badge {
    position: absolute;
    top: 0;
    left: -9px;
    background: #46d64a;
    color: #fff;
    padding: 0 20px;
    font-weight: bold;
    font-size: 14px;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .package-box .item .actions {
    margin-top: 10px;
    display: block;
}

.page.panel article>.content .package-box .item .actions .status {
    background: #eee;
    width: calc(100% - 50px);
    float: right;
    line-height: 46px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.page.panel article>.content .package-box .item .actions button {
    margin-bottom: -10px;
    width: 50px;
    float: left;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.page.panel article>.content .package-box .item .actions button i {
    margin-right: 0;
}

.page.panel article>.content .package-box .item .actions button:hover i {
    margin-right: 0;
    right: 0;
}

.page.panel article>.content .package-box .item:hover {
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel article>.content .package-box .item.active {
    border-color: #46d64a;
}

.page.panel article>.content .package-box .item.active .actions .status {
    color: #fff;
    background: #46d64a;
}

.page.panel article>.content .package-box .item.active .actions button {
    background: #32c236;
}

.page.panel article>.content .package-box .item.soon {
    border-color: #1a9ed4;
}

.page.panel article>.content .package-box .item.soon .actions .status {
    color: #fff;
    background: #1a9ed4;
}

.page.panel article>.content .package-box .item.soon .actions button {
    background: #068ac0;
}

.page.panel article>.content .package-box .item.soon .badge {
    background: #1a9ed4;
}

.page.panel article>.content .credit-card-box {
    position: relative;
    overflow: hidden;
}

.page.panel article>.content .credit-card-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.page.panel article>.content .credit-card-box p.price {
    color: #888;
    font-weight: bold;
}

.page.panel article>.content .credit-card-box p.length {
    color: #c09b32;
    font-weight: bold;
}

.page.panel article>.content .credit-card-box p.offer {
    position: absolute;
    top: 13px;
    left: -33px;
    background: #ffe36b;
    color: #d57707;
    padding: 0 36px;
    font-weight: bold;
    font-size: 12px;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.page.panel article>.content .credit-card-box a.pay {
    display: block;
    background: #666;
    color: #fff;
    margin: 15px -30px -30px -30px;
    padding: 5px;
}

.page.panel article>.content .credit-card-box a.pay:hover {
    background: #444;
}

.page.panel article>.content .chat-box .item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.page.panel article>.content .chat-box .item .text,
.page.panel article>.content .chat-box .item .file {
    display: inline-block;
    background: #f8f8f8;
    padding: 20px 25px 30px 25px;
    font-weight: bold;
    min-width: 10%;
    position: relative;
    margin-bottom: 5px;
    font-family: "iranyekanlight";
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel article>.content .chat-box .item .text .time,
.page.panel article>.content .chat-box .item .file .time {
    margin: 0 0 -15px 0;
    font-size: 10px;
    color: #888;
}

.page.panel article>.content .chat-box .item .text a,
.page.panel article>.content .chat-box .item .file a {
    text-decoration: underline;
}

.page.panel article>.content .chat-box .item .text a.button,
.page.panel article>.content .chat-box .item .file a.button {
    line-height: 20px;
    text-decoration: none;
}

.page.panel article>.content .chat-box .item .text:before,
.page.panel article>.content .chat-box .item .file:before {
    content: "";
    position: absolute;
    right: -18px;
    bottom: 12px;
    border: 10px solid transparent;
    border-left-color: #f7f7f7;
    width: 0;
    height: 0;
}

.page.panel article>.content .chat-box .item .text {
    display: block;
    width: 100%;
}

.page.panel article>.content .chat-box .item.answer {
    text-align: left;
}

.page.panel article>.content .chat-box .item.answer:after {
    content: "";
}

.page.panel article>.content .chat-box .item.answer a {
    color: #fff;
}

.page.panel article>.content .chat-box .item.answer .text,
.page.panel article>.content .chat-box .item.answer .file {
    background: #1a9ed4;
    color: #fff;
}

.page.panel article>.content .chat-box .item.answer .text .content,
.page.panel article>.content .chat-box .item.answer .file .content {
    text-align: right;
}

.page.panel article>.content .chat-box .item.answer .text a.button,
.page.panel article>.content .chat-box .item.answer .file a.button {
    background: #6ccff6 !important;
    border-color: #6ccff6 !important;
    color: #fff;
    box-shadow: none !important;
}

.page.panel article>.content .chat-box .item.answer .text .time,
.page.panel article>.content .chat-box .item.answer .file .time {
    color: #ddd;
}

.page.panel article>.content .chat-box .item.answer .text:before,
.page.panel article>.content .chat-box .item.answer .file:before {
    right: auto;
    left: -18px;
    border-left-color: transparent;
    border-right-color: #1a9ed4;
}

.page.panel article>.content .chat-box .item .title {
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}

.page.panel article>.content .chat-box .item .title:before {
    display: none;
}

.page.panel article>.content .chat-box .item .title .admin-title {
    font-size: 10px;
    margin-top: -5px;
    margin-bottom: 10px;
}

.page.panel article>.content .webservice-item {
    margin-bottom: 30px;
    padding: 10px 20px;
    border: 1px dashed #ddd;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.page.panel article>.content .webservice-item:before {
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    right: -6px;
    background: #46d64a;
    width: 6px;
    height: 30px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.page.panel article>.content .webservice-item:last-child {
    margin-bottom: 0;
}

.page.panel article>.content .webservice-item.disabled {
    background: #fafafa;
}

.page.panel article>.content .webservice-item.disabled:before {
    background: #ddd;
}

.page.panel article>.content .webservice-item.disabled .check {
    color: #ddd;
}

.page.panel article>.content .webservice-item.disabled .data .configs {
    display: none;
}

.page.panel article>.content .webservice-item .check {
    text-align: center;
    float: right;
    font-size: 30px;
    line-height: 60px;
    color: #46d64a;
    width: 60px;
    height: auto;
}

.page.panel article>.content .webservice-item .check i {
    position: absolute;
    top: calc(50% - 15px);
    width: 60px;
    text-align: center;
    right: 20px;
}

.page.panel article>.content .webservice-item .data {
    float: left;
    width: calc(100% - 80px);
    height: auto;
}

.page.panel article>.content .webservice-item .data h3 {
    font-size: 16px;
}

.page.panel article>.content .webservice-item .data .price {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #333;
    background: #ffe36b;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.page.panel article>.content .webservice-item .data .configs {
    padding: 10px 0;
}

.page.panel article>.content .webservice-item .data .configs input,
.page.panel article>.content .webservice-item .data .configs select,
.page.panel article>.content .webservice-item .data .configs textarea {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.page.panel article>.content .webservice-item .data .configs input:focus,
.page.panel article>.content .webservice-item .data .configs select:focus,
.page.panel article>.content .webservice-item .data .configs textarea:focus {
    border-bottom-color: #1a9ed4;
}

.page.panel article>.content .icon-box.webservice-limitrate-box {
    padding: 30px 20px !important;
}

.page.panel article>.content .icon-box.webservice-limitrate-box i.icon {
    top: 10px !important;
}

.page.panel article>.content ul.headList {
    list-style: none;
    font-size: 14px;
    padding: 20px;
}

.page.panel article>.content ul.headList li {
    display: inline-block;
}

.page.panel article>.content ul.headList li i {
    display: block;
    font-size: 50px;
    margin-bottom: 20px;
}

.page.panel article>.content ul.headList li b {
    position: relative;
    padding-right: 10px;
    margin-right: 0;
}

.page.panel article>.content ul.headList li b:before {
    content: "/";
    position: absolute;
    right: 18px;
    top: -3px;
    color: #1a9ed4;
}

.page.panel article>.content ul.headList.callsStatic li b:before {
    content: "/";
    position: absolute;
    right: 0px;
    top: -3px;
    color: #1a9ed4;
}

.page.panel article>.content ul.headList li b:nth-child(2):before {
    display: none;
}

.page.panel article>.content .progress-box {
    text-align: center;
}

.page.panel article>.content .progress-box .step {
    display: block;
    float: right;
    width: 20%;
}

.page.panel article>.content .progress-box .step .meta {
    margin-top: 20px;
}

.page.panel article>.content .progress-box .step .meta .circle {
    margin: 0 auto;
    position: relative;
    top: -12.4px;
    width: 16px;
    height: 16px;
}

.page.panel article>.content .progress-box .step .meta .btn {
    display: none;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    font-family: "iranyekanmedium";
    font-weight: normal;
    border-radius: 32px;
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
}

.page.panel article>.content .progress-box .step .meta .btn.success {
    background: #46d64a;
    color: #fff;
}

.page.panel article>.content .progress-box .step .meta .btn.success:hover {
    background: #3ccc40;
}

.page.panel article>.content .progress-box .step.passed .meta .circle {
    background: #32c236;
}

.page.panel article>.content .progress-box .step.current .meta .circle {
    background: #aaa;
}

.page.panel article>.content .progress-box .step.current .meta .btn {
    display: inline-block;
}

.page.panel article>.content .progress-box .progress {
    position: absolute;
    right: 20px;
    left: 20px;
    top: 72px;
    background: #ddd;
    overflow: hidden;
    width: calc(100% - 40px);
    height: 5px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.page.panel article>.content .progress-box .progress .fill {
    background: #46d64a;
    width: 10px;
    height: 100%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#technical-calls-popups {
    position: fixed;
    left: 0;
    bottom: 0px;
    height: calc(50vh);
    min-width: 300px;
    list-style: none;
    overflow: auto;
    flex-direction: column-reverse;
    display: none;
}

#technical-calls-popups li {
    padding: 15px;
    background: #d1d1d15c;
    box-shadow: 0 0 10px 0px #ccc;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 0px 25px 25px 25px;
}

#technical-calls-popups li .call-department {
    color: #1385b4;
    font-weight: 600;
    font-size: 12px;
}

#technical-calls-popups li .call-type.incoming {
    color: #108314;
    font-weight: 600;
    font-size: 12px;
}

#technical-calls-popups li .call-type.outgoing {
    color: #db7c08;
    font-weight: 600;
    font-size: 12px;
}

#technical-calls-popups li .call-type span {
    display: block;
    color: #000;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 5px;
    font-family: 'iranyekanbold';
    margin: 10px 0 5px 0;
}

#technical-calls-popups li .call-type.incoming::before {
    font-family: 'Font Awesome 5 Pro';
    content: "\f08b";
    margin-left: 5px;
}

#technical-calls-popups li .call-type.outgoing::before {
    font-family: 'Font Awesome 5 Pro';
    content: "\f090";
    margin-left: 5px;
}

#technical-calls-popups li .call-name {
    text-align: center;
    display: block;
    margin-bottom: 5px;
}

#technical-calls-popups li .call-name span.label {
    font-weight: 600;
    background: #0194b8;
    color: #fff;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 12px;
}

#technical-calls-popups li .actions {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

#technical-calls-popups li .actions a {
    background: #ccc;
    padding: 3px 5px;
    border-radius: 5px;
    margin: 0px 5px;
}

#technical-calls-popups .close-popup {
    position: absolute;
    top: 10px;
    left: 10px;
}

.page.panel .avatar {
    background: linear-gradient(45deg, #05ee87, #fdcb5c);
    margin: 0 auto;
    position: relative;
    margin-bottom: 10px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page.panel .avatar img {
    display: block;
    border: 8px double #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page.panel .sideBox {
    background: #fff;
    z-index: 10;
    padding: 20px;
    width: 300px;
    height: auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel .sideBox h3 {
    text-align: center;
    border-bottom: 1px solid #eee;
    margin: -20px -20px 20px -20px;
    padding: 12px 10px;
    font-family: "iranyekanmedium";
    font-weight: normal;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.page.panel .sideBox .content {
    font-size: 13px;
}

.page.panel .sideBox .content .row {
    margin-bottom: 10px;
}

.page.panel .sideBox .content .row .radio {
    padding: 5px !important;
}

.page.panel .sideBox .content .row .radio p {
    font-size: 12px !important;
}

.page.panel .sideBox .content .row .radio.active {
    background: #666;
    box-shadow: 0 0 5px rgba(50, 50, 50, 0.15) !important;
}

.page.panel .sideBox .foot {
    margin-top: 20px;
}

.page.panel .sideBox .foot button,
.page.panel .sideBox .foot .button {
    font-size: 14px;
}

.services-types .item {
    position: relative;
    background: #fff;
    border-top: 3px solid #6ccff6;
    border-style: dashed;
    border-radius: 20px;
    width: 80%;
    display: block;
    margin: 0 auto;
    padding: 20px 0 0 0;
}

.services-types .item h1 {
    font-size: 20px;
}

.services-types .item .subtitle {
    font-weight: 600;
    color: #a8a8a8;
}

.services-types .item .buy {
    border-radius: 10px !important;
    padding: 5px 30px !important;
    margin: 10px 0;
    width: 80%;
}

.services-types .item .features {
    list-style: none;
    text-align: right;
    padding: 10px 20px;
}

.services-types .item .features li::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    margin-left: 10px;
    color: #6ccff6;
}

.services-types .item .more {
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 20px 20px !important;
}

.dialplan-editor {
    position: relative;
    overflow: auto;
    height: 500px;
    background: #ecedef;
    direction: ltr;
    padding: 0 !important;
}

.dialplan-editor-user {
    height: 100vh !important;
}

.dialplan-editor-user aside.floatPanel {
    position: sticky !important;
    z-index: 10 !important;
    top: 95px !important;
    left: calc(100% - 350px) !important;
    height: 75% !important;
}

.dialplan-editor-user #save-dialplan {
    color: #fff;
    background: linear-gradient(-60deg, rgb(108, 207, 246), rgb(26, 158, 212)) repeat-x rgb(26, 158, 212);
    transition: 0.3s all;
}

.dialplan-editor-user #save-dialplan:hover {
    background: #6ccff6;
    transition: 0.3s all;
}

.dialplan-editor nav.top {
    direction: rtl;
    position: relative;
    z-index: 10;
    border-radius: 40px;
    width: 95% !important;
    margin: 0 auto !important;
    /* position: absolute !important; */
    position: sticky !important;
    top: 20px !important;
    left: 50% !important;
    transform: translate(-50%, 0);
}

.dialplan-editor nav.top .umenu {
    top: 14px !important;
    left: 15px !important;
}

.dialplan-editor-user nav.top .umenu {
    top: 8px !important;
}

.dialplan-editor #dialplan-editor {
    direction: ltr;
    background: #f2f3f5 url(../images/grid.html);
    background-size: 100px 100px;
    width: 10000px;
    height: 10000px;
}

.dialplan-editor-user #dialplan-editor {
    position: absolute;
    top: 0;
    left: 0;
}

.dialplan-editor #dialplan-edit-modal {
    display: none;
    direction: rtl;
    position: fixed;
    background: #ffffff;
    z-index: 99;
    max-height: 600px;
    height: auto;
    width: 500px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0px 0px 20px 0px #ccc;
    border-radius: 10px;
}

.dialplan-editor #dialplan-edit-modal button,
.dialplan-editor #dialplan-edit-modal .button {
    line-height: normal !important;
}

.dialplan-editor #dialplan-edit-modal .modal-content {
    overflow-y: auto;
    max-height: 500px;
    height: auto;
    width: 100%;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 0 0 15px 15px;
}

.dialplan-editor #dialplan-edit-modal .modal-content .inline-button {
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x;
    box-shadow: 0 4px 8px rgba(26, 158, 212, 0.2);
    color: #fff;
    display: flex;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
    font-size: 14px;
}

.dialplan-editor #dialplan-edit-modal .modal-content input,
.dialplan-editor #dialplan-edit-modal .modal-content select {
    height: 35px !important;
    font-size: 14px !important;
    padding: 6px 10px !important;
}

.dialplan-editor #dialplan-edit-modal .modal-content .options-slots,
.dialplan-editor #dialplan-edit-modal .modal-content .followers-slots {
    height: 100px;
    overflow-y: auto;
    background: #fff;
    margin: 10px auto;
    display: block;
    border-radius: 5px;
    max-width: 63%;
    line-height: 10px;
}

.dialplan-editor #dialplan-edit-modal .modal-content .options-slots p,
.dialplan-editor #dialplan-edit-modal .modal-content .followers-slots p {
    display: inline-block;
    background: #dbdada;
    margin-top: 5px;
    margin-left: 10px;
    line-height: 15px;
    font-size: 12px;
    padding: 2px 5px;
}

.dialplan-editor #dialplan-edit-modal .modal-content .options-slots p span.remove-option,
.dialplan-editor #dialplan-edit-modal .modal-content .followers-slots p span.remove-follower {
    background: #e91e63;
    color: #fff;
    padding: 0px 5px;
    margin-right: 5px;
    border-radius: 17px;
    cursor: pointer;
}

.dialplan-editor #dialplan-edit-modal .actions {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 10px 0 15px 0;
    padding: 0 10px;
}

.dialplan-editor #dialplan-edit-modal .actions .button {
    margin: 0 0 0 10px;
    width: auto !important;
    padding: 8px 20px !important;
}

.dialplan-editor #dialplan-edit-modal .operator-title {
    padding: 5px 10px 2px 10px;
    border-bottom: 3px solid #61c8f1;
    border-radius: 10px 10px 0 0 !important;
    color: #28a6da;
    line-height: 30px;
    font-family: 'iranyekanmedium';
}

.dialplan-editor #dialplan-edit-modal .play-announcement {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.dialplan-editor aside.floatPanel {
    direction: ltr;
    overflow-y: auto;
    position: absolute;
    top: 110px;
    right: -100%;
    background: #fff;
    padding: 20px;
    width: 320px;
    height: calc(100% - 145px);
    z-index: 9;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.dialplan-editor aside.floatPanel .title:before {
    content: unset !important;
}

.dialplan-editor aside.floatPanel.active {
    right: 2.5%;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.dialplan-editor aside.floatPanel .components-list {
    height: auto;
}

.dialplan-editor aside.floatPanel .title {
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x !important;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dialplan-editor aside.floatPanel .title i {
    font-size: 30px;
}

.dialplan-editor aside.floatPanel .title h3 {
    font-size: 16px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.dialplan-editor aside.floatPanel .components-list {
    padding: 5px;
    background: #fafafa;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dialplan-editor aside.floatPanel .component {
    background: #fff;
    border: 1px solid #eee;
    overflow-x: hidden;
    margin-bottom: 10px;
    cursor: grab;
    width: 100%;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dialplan-editor aside.floatPanel .component .icon {
    float: right;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    border-left: 1px solid #fdb743;
    width: 60px;
    height: 60px;
}

.dialplan-editor aside.floatPanel .component .desc {
    float: left;
    padding: 10px 15px 10px 10px;
    overflow: hidden;
    width: calc(100% - 60px);
    height: 60px;
}

.dialplan-editor aside.floatPanel .component .desc h4 {
    line-height: 20px;
}

.dialplan-editor aside.floatPanel .component .desc p {
    font-size: 12px;
    white-space: nowrap;
    direction: rtl;
    line-height: 20px;
}

.dialplan-editor aside.floatPanel .component:last-child {
    margin-bottom: 0;
}

.dialplan-editor aside.floatPanel .component:hover {
    border-color: #ddd;
    background: #fafafa;
}

.dialplan-editor aside.floatPanel .setting-wrapper {
    margin-top: 20px;
}

.dialplan-editor aside.floatPanel .setting-wrapper .sep-title {
    text-align: center;
    font-size: 14px;
    padding: 10px;
    background: #fff;
    font-family: "iranyekanbold";
    font-weight: normal;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dialplan-editor aside.floatPanel .setting-wrapper .outputs {
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option {
    text-align: center;
    position: relative;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option.action {
    cursor: pointer;
    background: #fafafa;
    font-family: "iranyekanbold";
    font-weight: normal;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option.action:hover {
    background: #eee;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option .delete {
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
    color: #fff;
    background: #f54237;
    width: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option .delete:hover {
    background: #ff564b;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option .input-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option .input-group * {
    box-shadow: none !important;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option .input-group .input-group-prepend {
    flex: 40%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x !important;
    color: #fff;
    border-radius: 0 5px 5px 0;
}

.dialplan-editor aside.floatPanel .setting-wrapper .option .input-group .form-control {
    flex: 60%;
    height: 40px;
    border-radius: 5px 0 0 5px;
    box-shadow: none;
    text-align: center;
}

.dialplan-editor .mt-1 {
    margin-top: 1rem;
}

.dialplan-editor .floatBtn {
    position: fixed;
    top: -5px;
    left: -25px;
    background: #fff;
    padding: 10px;
    direction: rtl;
    transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.dialplan-editor .floatBtn span {
    padding: 0 20px;
}

.dialplan-editor .floatBtn button {
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.dialplan-editor .floatBtn.active {
    top: 70px;
}

#dialplan-edit-modal .time-conditions .times-slots {
    overflow-x: auto;
    background: #fff;
    border-radius: 5px;
    height: 35px;
    padding: 0;
    line-height: 35px;
}

#dialplan-edit-modal .time-conditions .times-slots p {
    display: inline-block;
    background: #ccc;
    line-height: 20px;
    padding: 2px 5px;
    border-radius: 2px;
}

#dialplan-edit-modal .time-conditions .times-slots p span.remove-time {
    background: #e91e63;
    color: #fff;
    padding: 0px 6px;
    margin-right: 5px;
    border-radius: 17px;
    cursor: pointer;
}

#dialplan-edit-modal .time-picker-dialog {
    position: absolute;
    background: #fff;
    width: 80%;
    top: 50%;
    right: 50%;
    box-shadow: 0 0 5px 0px #bdbdbd;
    border-radius: 5px;
    padding: 20px 25px;
    transform: translate(50%, -50%);
}

#dialplan-edit-modal .time-picker-dialog .dialog-actions {
    display: flex;
    margin-top: 10px;
    justify-content: end;
}

#dialplan-edit-modal .time-picker-dialog .dialog-actions .button {
    width: 70px;
    height: 32px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page nav.top {
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
    position: relative;
}

.page nav.top .toggle-nav {
    display: inline-block;
    background: #fafafa;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page nav.top .toggle-nav:hover {
    background: #eee;
}

.page nav.top .breadcrumbs {
    display: inline-block;
    padding: 9px;
}

.page nav.top .breadcrumbs span,
.page nav.top .breadcrumbs a {
    padding: 0 5px;
}

.page nav.top .breadcrumbs a:after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    margin-right: 10px;
    font-size: 12px;
    position: relative;
    top: 1px;
}

.page nav.top .breadcrumbs a:last-child:after {
    display: none;
}

.page nav.top .logo {
    display: block;
}

.page nav.top .logo a {
    display: block;
}

.page nav.top .logo a img {
    display: block;
    margin: 2.5px auto;
    width: 160px;
    height: 35px;
}

.page nav.top .umenu {
    float: left;
    position: absolute;
    top: 10px;
    left: 0;
}

.page nav.top .umenu>a,
.page nav.top .umenu>a {
    display: inline-block;
    background: #fafafa;
    text-align: center;
    line-height: 40px;
    padding: 0 20px;
    font-weight: bold;
    font-family: "iranyekanlight";
    border-radius: 32px;
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
}

.page nav.top .umenu>a b {
    color: #077fb0;
    margin: 0 5px 0 0;
    font-family: "iranyekanmedium";
    font-weight: normal;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page nav.top .umenu>a:hover {
    background: #6ccff6;
    color: #fff;
}

.page nav.top .umenu>a:hover b {
    color: #fff;
}

.page nav.top .umenu .notifs-btn,
.page nav.top .umenu .menu-btn {
    display: inline-block;
    background: #fafafa;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page nav.top .umenu .notifs-btn i,
.page nav.top .umenu .menu-btn i {
    position: relative;
    top: 2px;
}

.page nav.top .umenu .notifs-btn:hover,
.page nav.top .umenu .menu-btn:hover {
    background: #eee;
}

.page nav.top .umenu .notifs-btn .badge,
.page nav.top .umenu .menu-btn .badge {
    display: none;
    position: absolute;
    right: -5px;
    top: -2px;
    background: #ff7469;
    line-height: 18px;
    font-size: 13px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page nav.top .umenu .notifs-btn.highlighted,
.page nav.top .umenu .menu-btn.highlighted {
    background: #f54237;
    color: #fff;
}

.page nav.top .umenu .notifs-btn.highlighted .badge,
.page nav.top .umenu .menu-btn.highlighted .badge {
    display: block;
}

.page ul.steps {
    list-style: none;
    overflow: hidden;
    background: #f8f8f8;
    color: #ccc;
    text-align: center;
    border-right: 1px solid #46d64a;
    margin-bottom: 10px;
    margin-top: 40px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
}

.page ul.steps li {
    float: right;
    padding: 20px 20px;
    font-weight: bold;
    cursor: not-allowed;
    position: relative;
}

.page ul.steps li i {
    margin-left: 10px;
}

.page ul.steps li.passed,
.page ul.steps li.active {
    background: #fff;
    color: #46d64a;
    cursor: default;
    border-top: 1px solid #46d64a;
    border-bottom: 1px solid #46d64a;
}

.page ul.steps li.last {
    border-left: 1px solid #46d64a;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.page ul.steps li.active:after {
    display: block;
    content: "";
    background: #fff;
    position: absolute;
    left: -21px;
    top: 7.5px;
    border-left: 1px solid #46d64a;
    border-bottom: 1px solid #46d64a;
    width: 46.5px;
    height: 46.5px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page ul.steps li.active.last:after {
    display: none;
}

.page .grid-box {
    border: 1px dashed #ddd;
    text-align: center;
}

.page .grid-box .item {
    position: relative;
    float: right;
    padding: 15px 10px 10px 10px;
    border: 1px dashed #ddd;
    background: #fff;
    cursor: pointer;
    width: 25%;
    height: auto;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page .grid-box .item p.number {
    font-size: 20px;
    direction: ltr;
    white-space: nowrap;
    font-family: "iranyekanbold";
    font-weight: normal;
}

.page .grid-box .item p.number small {
    color: #aaa;
    font-size: 14px;
    white-space: nowrap;
}

.page .grid-box .item p.price {
    color: #888;
    font-size: 12px;
    white-space: nowrap;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page .grid-box .item .type {
    color: #888;
    white-space: nowrap;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page .grid-box .item:hover {
    background: #fafafa;
}

.page .grid-box .item.active {
    border: 1px solid #ffd23f;
    background: #ffb;
    box-shadow: 0 0 0 2px #ffd23f inset;
}

.page .grid-box .item.diamond p.number span:nth-child(2) {
    color: #9b59b6;
}

.page .grid-box .item.gold .type {
    color: #d7aa17;
}

.page .grid-box .item.silver .type {
    color: #1a9ed4;
}

.page .grid-box .item.bronze .type {
    color: #a9332c;
}

.page .grid-box .item .ribbon {
    z-index: 2;
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: absolute;
}

.page .offered-trunk-list .grid-box .item .type {
    color: #09cd11;
    font-weight: 600;
}

.page .offered-trunk-list .grid-box .roundBox-title {
    background-color: #09cd11;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 38px;
}

.page .offered-trunk-list .grid-box .item .price {
    font-size: 14px;
}

.page .offered-trunk-list .grid-box .item .sell-price span::after {
    content: ' ';
    width: 35%;
    height: 1px;
    border: 1px solid #ff000070;
    transform: rotate(170deg) translate(-50%, -50%);
    position: absolute;
    top: 67px;
    right: 50%;
    z-index: 2;
}

.page .offered-trunk-list .grid-box .item .real-price span {
    font-weight: 600;
    color: #09cd11;
}

.page .grid-box .item .ribbon::before,
.page .grid-box .item .ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #f54237;
}

.page .grid-box .item .ribbon span {
    direction: ltr;
    position: absolute;
    display: block;
    width: 90px;
    height: 25px;
    padding: 0;
    background-color: #f54237;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    text-align: center;
}

.page .grid-box .item .ribbon-top-left {
    top: -5px;
    left: -5px;
}

.page .grid-box .item .ribbon-top-left::before,
.page .grid-box .item .ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}

.page .grid-box .item .ribbon-top-left::before {
    top: 0px;
    right: 17px;
}

.page .grid-box .item .ribbon-top-left::after {
    bottom: 17px;
    left: 0;
}

.page .grid-box .item .ribbon-top-left span {
    right: 12px;
    top: 10px;
    transform: rotate(-45deg);
}

.page .offered-trunk-list .grid-box {
    padding: 5px;
}

.page .asideMenuBtn {
    display: none;
    background: #eee;
    line-height: 35px;
    text-align: center;
    position: relative;
    top: 2px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.asideMenuBtn.user-panel {
    width: 125px;
    border-radius: 25px;
}

.asideMenuBtn.show-dialplan-editor-components {
    display: inline-block !important;
}

.page .asideMenuBtn i {
    position: relative;
    top: 2px;
}

#nprogress {
    background: rgba(255, 255, 255, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100000000000;
    width: 100%;
    height: 100%;
}

#nprogress .bar {
    background: #29d;
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

#nprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #29d, 0 0 5px #29d;
    opacity: 1;
    -webkit-transform: rotate(3deg) translate(0, -4px);
    -ms-transform: rotate(3deg) translate(0, -4px);
    transform: rotate(3deg) translate(0, -4px);
}

#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: calc(50% - 20px);
    right: calc(50% - 20px);
}

#nprogress .spinner-icon {
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border: solid 2px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;
    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tooltipster-fall,
.tooltipster-grow.tooltipster-show {
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-base {
    display: flex;
    pointer-events: none;
    position: absolute;
}

.tooltipster-box {
    flex: 1 1 auto;
}

.tooltipster-content {
    box-sizing: border-box;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}

.tooltipster-ruler {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    transform: rotateZ(0);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
    top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0;
}

.tooltipster-slide {
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
    left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0;
}

@keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.tooltipster-update-fade {
    animation: tooltipster-fading 0.4s;
}

@keyframes tooltipster-rotating {
    25% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0);
    }
}

.tooltipster-update-rotate {
    animation: tooltipster-rotating 0.6s;
}

@keyframes tooltipster-scaling {
    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.tooltipster-update-scale {
    animation: tooltipster-scaling 0.6s;
}

.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid #000;
    border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}

.tooltipster-sidetip .tooltipster-content {
    color: #fff;
    line-height: 18px;
    padding: 6px 14px;
}

.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    margin-left: -10px;
    top: 0;
    width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    top: 0;
    width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 0;
    width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px;
}

.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}

.tooltipster-sidetip .tooltipster-arrow-background {
    border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0;
    top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0;
    top: -3px;
}

.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #000;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #000;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #000;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #000;
}

.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px;
}

.choices {
    position: relative;
    margin-bottom: 24px;
    font-size: 16px;
}

.choices:focus {
    outline: 0;
}

.choices:last-child {
    margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.choices.is-disabled .choices__item {
    cursor: not-allowed;
}

.choices [hidden] {
    display: none !important;
}

.choices[data-type*="select-one"] {
    cursor: pointer;
}

.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 7.5px;
}

.choices[data-type*="select-one"] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    margin: 0;
}

.choices[data-type*="select-one"] .choices__button {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: 0.5;
}

.choices[data-type*="select-one"] .choices__button:focus,
.choices[data-type*="select-one"] .choices__button:hover {
    opacity: 1;
}

.choices[data-type*="select-one"] .choices__button:focus {
    box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*="select-one"] .choices__item[data-value=""] .choices__button {
    display: none;
}

.choices[data-type*="select-one"]:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #333 transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
}

.choices[data-type*="select-one"].is-open:after {
    border-color: transparent transparent #333;
    margin-top: -7.5px;
}

.choices[data-type*="select-one"][dir="rtl"]:after {
    left: 11.5px;
    right: auto;
}

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0;
}

.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
    cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
    position: relative;
    display: inline-block;
    margin: 0 -4px 0 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: 0.75;
    border-radius: 0;
}

.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover {
    opacity: 1;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #ddd;
    border-radius: 2.5px;
    font-size: 14px;
    min-height: 44px;
    overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #b7b7b7;
}

.is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%;
}

[dir="rtl"] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}

.choices__list--single .choices__item {
    width: 100%;
}

.choices__list--multiple {
    display: inline;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #00a5bb;
    color: #fff;
    word-break: break-all;
    box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}

[dir="rtl"] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaa;
    border: 1px solid #919191;
}

.choices__list--dropdown {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all;
    will-change: visibility;
}

.choices__list--dropdown.is-active {
    visibility: visible;
}

.is-open .choices__list--dropdown {
    border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
    text-align: right;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px;
    }

    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }

    [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px;
    }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: 0.5;
}

.choices__item {
    cursor: default;
}

.choices__item--selectable {
    cursor: pointer;
}

.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.5;
}

.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: #808080;
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.choices__button:focus,
.choices__input:focus {
    outline: 0;
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}

[dir="rtl"] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}

.choices__placeholder {
    opacity: 0.5;
}

.switch {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    box-sizing: content-box;
    outline: none;
}

.switch,
.switch small {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.switch small {
    font-size: 12px;
    top: 0;
    border-radius: 100%;
    text-align: center;
    display: block;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
    color: #000;
}

.switch-default {
    width: 50px;
    height: 30px;
    border-radius: 20px;
    line-height: 30px;
}

.switch-default small {
    width: 30px;
    height: 30px;
}

.switch-small {
    border-radius: 20px;
    height: 20px;
    width: 33px;
    line-height: 20px;
}

.switch-small small {
    height: 20px;
    width: 20px;
}

.switch-large {
    border-radius: 40px;
    height: 40px;
    width: 66px;
    line-height: 40px;
}

.switch-large small {
    height: 40px;
    width: 40px;
}

.switch-disabled {
    opacity: 0.5;
}

/*!
 * jquery-confirm v3.3.4 (http://craftpip.github.io/jquery-confirm/)
 * Author: boniface pereira
 * Website: www.craftpip.com
 * Contact: hey@craftpip.com
 *
 * Copyright 2013-2019 jquery-confirm
 * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
 */
@-webkit-keyframes jconfirm-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes jconfirm-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

body[class*="jconfirm-no-scroll-"] {
    overflow: hidden !important;
}

.jconfirm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    font-family: inherit;
    overflow: hidden;
}

.jconfirm .jconfirm-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.jconfirm .jconfirm-bg.jconfirm-bg-h {
    opacity: 0 !important;
}

.jconfirm .jconfirm-scrollpane {
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-perspective-origin: center;
    perspective-origin: center;
    display: table;
    width: 100%;
    height: 100%;
}

.jconfirm .jconfirm-row {
    display: table-row;
    width: 100%;
}

.jconfirm .jconfirm-cell {
    display: table-cell;
    vertical-align: middle;
}

.jconfirm .jconfirm-holder {
    max-height: 100%;
    padding: 50px 0;
}

.jconfirm .jconfirm-box-container {
    -webkit-transition: -webkit-transform;
    transition: -webkit-transform;
    transition: transform;
    transition: transform, -webkit-transform;
}

.jconfirm .jconfirm-box-container.jconfirm-no-transition {
    -webkit-transition: none !important;
    transition: none !important;
}

.jconfirm .jconfirm-box {
    background: #fff;
    border-radius: 4px;
    position: relative;
    outline: 0;
    padding: 15px 15px 0;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

@-webkit-keyframes type-blue {

    1%,
    100% {
        border-color: #3498db;
    }

    50% {
        border-color: #5faee3;
    }
}

@keyframes type-blue {

    1%,
    100% {
        border-color: #3498db;
    }

    50% {
        border-color: #5faee3;
    }
}

@-webkit-keyframes type-green {

    1%,
    100% {
        border-color: #2ecc71;
    }

    50% {
        border-color: #54d98c;
    }
}

@keyframes type-green {

    1%,
    100% {
        border-color: #2ecc71;
    }

    50% {
        border-color: #54d98c;
    }
}

@-webkit-keyframes type-red {

    1%,
    100% {
        border-color: #e74c3c;
    }

    50% {
        border-color: #ed7669;
    }
}

@keyframes type-red {

    1%,
    100% {
        border-color: #e74c3c;
    }

    50% {
        border-color: #ed7669;
    }
}

@-webkit-keyframes type-orange {

    1%,
    100% {
        border-color: #f1c40f;
    }

    50% {
        border-color: #f4d03f;
    }
}

@keyframes type-orange {

    1%,
    100% {
        border-color: #f1c40f;
    }

    50% {
        border-color: #f4d03f;
    }
}

@-webkit-keyframes type-purple {

    1%,
    100% {
        border-color: #9b59b6;
    }

    50% {
        border-color: #b07cc6;
    }
}

@keyframes type-purple {

    1%,
    100% {
        border-color: #9b59b6;
    }

    50% {
        border-color: #b07cc6;
    }
}

@-webkit-keyframes type-dark {

    1%,
    100% {
        border-color: #34495e;
    }

    50% {
        border-color: #46627f;
    }
}

@keyframes type-dark {

    1%,
    100% {
        border-color: #34495e;
    }

    50% {
        border-color: #46627f;
    }
}

.jconfirm .jconfirm-box.jconfirm-type-animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.jconfirm .jconfirm-box.jconfirm-type-blue {
    border-top: solid 7px #3498db;
    -webkit-animation-name: type-blue;
    animation-name: type-blue;
}

.jconfirm .jconfirm-box.jconfirm-type-green {
    border-top: solid 7px #2ecc71;
    -webkit-animation-name: type-green;
    animation-name: type-green;
}

.jconfirm .jconfirm-box.jconfirm-type-red {
    border-top: solid 7px #e74c3c;
    -webkit-animation-name: type-red;
    animation-name: type-red;
}

.jconfirm .jconfirm-box.jconfirm-type-orange {
    border-top: solid 7px #f1c40f;
    -webkit-animation-name: type-orange;
    animation-name: type-orange;
}

.jconfirm .jconfirm-box.jconfirm-type-purple {
    border-top: solid 7px #9b59b6;
    -webkit-animation-name: type-purple;
    animation-name: type-purple;
}

.jconfirm .jconfirm-box.jconfirm-type-dark {
    border-top: solid 7px #34495e;
    -webkit-animation-name: type-dark;
    animation-name: type-dark;
}

.jconfirm .jconfirm-box.loading {
    height: 120px;
}

.jconfirm .jconfirm-box.loading:before {
    content: "";
    position: absolute;
    left: 0;
    background: #fff;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 1;
}

.jconfirm .jconfirm-box.loading:after {
    opacity: 0.6;
    content: "";
    height: 30px;
    width: 30px;
    border: solid 3px transparent;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    border-radius: 50%;
    -webkit-animation: jconfirm-spin 1s infinite linear;
    animation: jconfirm-spin 1s infinite linear;
    border-bottom-color: #1e90ff;
    top: 50%;
    margin-top: -15px;
    z-index: 2;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: 0.6;
    text-align: center;
    font-size: 27px !important;
    line-height: 14px !important;
    display: none;
    z-index: 1;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty {
    display: none;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa {
    font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon {
    font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi {
    font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover {
    opacity: 1;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
    display: block;
    font-size: 22px;
    line-height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    padding-bottom: 15px;
}

.jconfirm .jconfirm-box div.jconfirm-title-c.jconfirm-hand {
    cursor: move;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    font-size: inherit;
    display: inline-block;
    vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i {
    vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty {
    display: none;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: inherit;
    font-family: inherit;
    display: inline-block;
    vertical-align: middle;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty {
    display: none;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
    height: auto;
    -webkit-transition: height 0.4s ease-in;
    transition: height 0.4s ease-in;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
    overflow-y: hidden;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar {
    width: 3px;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 3px;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
    overflow: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img {
    max-width: 100%;
    height: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty {
    display: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons {
    padding-bottom: 11px;
}

.jconfirm .jconfirm-box .jconfirm-buttons>button {
    margin-bottom: 4px;
    margin-left: 2px;
    margin-right: 2px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    min-height: 1em;
    -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
    transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
    transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
    transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
    -webkit-tap-highlight-color: transparent;
    border: 0;
    background-image: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue {
    background-color: #3498db;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover {
    background-color: #2980b9;
    color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
    background-color: #2ecc71;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
    background-color: #27ae60;
    color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
    background-color: #e74c3c;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
    background-color: #c0392b;
    color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange {
    background-color: #f1c40f;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover {
    background-color: #f39c12;
    color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background-color: #ecf0f1;
    color: #000;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background-color: #bdc3c7;
    color: #000;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple {
    background-color: #9b59b6;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover {
    background-color: #8e44ad;
    color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark {
    background-color: #34495e;
    color: #fff;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover {
    background-color: #2c3e50;
    color: #fff;
}

.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c {
    color: #e74c3c !important;
}

.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c {
    color: #3498db !important;
}

.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c {
    color: #2ecc71 !important;
}

.jconfirm .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c {
    color: #9b59b6 !important;
}

.jconfirm .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c {
    color: #f1c40f !important;
}

.jconfirm .jconfirm-box.jconfirm-type-dark .jconfirm-title-c .jconfirm-icon-c {
    color: #34495e !important;
}

.jconfirm .jconfirm-clear {
    clear: both;
}

.jconfirm.jconfirm-rtl {
    direction: rtl;
}

.jconfirm.jconfirm-rtl div.jconfirm-closeIcon {
    left: 5px;
    right: auto;
}

.jconfirm.jconfirm-white .jconfirm-bg,
.jconfirm.jconfirm-light .jconfirm-bg {
    background-color: #444;
    opacity: 0.2;
}

.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons {
    float: right;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #ddd;
}

.jconfirm.jconfirm-white.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-light.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0;
}

.jconfirm.jconfirm-black .jconfirm-bg,
.jconfirm.jconfirm-dark .jconfirm-bg {
    background-color: #2f4f4f;
    opacity: 0.4;
}

.jconfirm.jconfirm-black .jconfirm-box,
.jconfirm.jconfirm-dark .jconfirm-box {
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    background: #444;
    border-radius: 5px;
    color: #fff;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons {
    float: right;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button {
    border: 0;
    background-image: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
    -webkit-transition: background 0.1s;
    transition: background 0.1s;
    color: #fff;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background: 0;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #666;
}

.jconfirm.jconfirm-black.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-dark.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0;
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake {
    -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow {
    -webkit-animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@-webkit-keyframes shake {

    10%,
    90% {
        -webkit-transform: translate3d(-2px, 0, 0);
        transform: translate3d(-2px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-8px, 0, 0);
        transform: translate3d(-8px, 0, 0);
    }

    40%,
    60% {
        -webkit-transform: translate3d(8px, 0, 0);
        transform: translate3d(8px, 0, 0);
    }
}

@keyframes shake {

    10%,
    90% {
        -webkit-transform: translate3d(-2px, 0, 0);
        transform: translate3d(-2px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-8px, 0, 0);
        transform: translate3d(-8px, 0, 0);
    }

    40%,
    60% {
        -webkit-transform: translate3d(8px, 0, 0);
        transform: translate3d(8px, 0, 0);
    }
}

@-webkit-keyframes glow {

    0%,
    100% {
        -webkit-box-shadow: 0 0 0 #f00;
        box-shadow: 0 0 0 #f00;
    }

    50% {
        -webkit-box-shadow: 0 0 30px #f00;
        box-shadow: 0 0 30px #f00;
    }
}

@keyframes glow {

    0%,
    100% {
        -webkit-box-shadow: 0 0 0 #f00;
        box-shadow: 0 0 0 #f00;
    }

    50% {
        -webkit-box-shadow: 0 0 30px #f00;
        box-shadow: 0 0 30px #f00;
    }
}

.jconfirm {
    -webkit-perspective: 400px;
    perspective: 400px;
}

.jconfirm .jconfirm-box {
    opacity: 1;
    -webkit-transition-property: all;
    transition-property: all;
}

.jconfirm .jconfirm-box.jconfirm-animation-top,
.jconfirm .jconfirm-box.jconfirm-animation-left,
.jconfirm .jconfirm-box.jconfirm-animation-right,
.jconfirm .jconfirm-box.jconfirm-animation-bottom,
.jconfirm .jconfirm-box.jconfirm-animation-opacity,
.jconfirm .jconfirm-box.jconfirm-animation-zoom,
.jconfirm .jconfirm-box.jconfirm-animation-scale,
.jconfirm .jconfirm-box.jconfirm-animation-none,
.jconfirm .jconfirm-box.jconfirm-animation-rotate,
.jconfirm .jconfirm-box.jconfirm-animation-rotatex,
.jconfirm .jconfirm-box.jconfirm-animation-rotatey,
.jconfirm .jconfirm-box.jconfirm-animation-scaley,
.jconfirm .jconfirm-box.jconfirm-animation-scalex {
    opacity: 0;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotate {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatex {
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatexr {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatey {
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotateyr {
    -webkit-transform: rotatey(-90deg);
    transform: rotatey(-90deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-scaley {
    -webkit-transform: scaley(1.5);
    transform: scaley(1.5);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-scalex {
    -webkit-transform: scalex(1.5);
    transform: scalex(1.5);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-top {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
}

.jconfirm .jconfirm-box.jconfirm-animation-left {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
}

.jconfirm .jconfirm-box.jconfirm-animation-right {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
}

.jconfirm .jconfirm-box.jconfirm-animation-bottom {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
}

.jconfirm .jconfirm-box.jconfirm-animation-zoom {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.jconfirm .jconfirm-box.jconfirm-animation-scale {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.jconfirm .jconfirm-box.jconfirm-animation-none {
    visibility: hidden;
}

.jconfirm.jconfirm-supervan .jconfirm-bg {
    background-color: rgba(54, 70, 93, 0.95);
}

.jconfirm.jconfirm-supervan .jconfirm-box {
    background-color: transparent;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-blue {
    border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-green {
    border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-red {
    border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-orange {
    border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-purple {
    border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-dark {
    border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon {
    color: #fff;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c {
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: normal;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c>* {
    padding-bottom: 25px;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 25px;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content {
    text-align: center;
    color: #fff;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons {
    text-align: center;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button {
    font-size: 16px;
    border-radius: 2px;
    background: #303f53;
    text-shadow: none;
    border: 0;
    color: #fff;
    padding: 10px;
    min-width: 100px;
}

.jconfirm.jconfirm-supervan.jconfirm-rtl .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0;
}

.jconfirm.jconfirm-material .jconfirm-bg {
    background-color: rgba(0, 0, 0, 0.67);
}

.jconfirm.jconfirm-material .jconfirm-box {
    background-color: #fff;
    -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
    padding: 30px 25px 10px 25px;
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0;
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon {
    color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 22px;
    font-weight: bold;
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content {
    color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons {
    text-align: right;
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button {
    text-transform: uppercase;
    font-weight: 500;
}

.jconfirm.jconfirm-material.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0;
}

.jconfirm.jconfirm-bootstrap .jconfirm-bg {
    background-color: rgba(0, 0, 0, 0.21);
}

.jconfirm.jconfirm-bootstrap .jconfirm-box {
    background-color: #fff;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
    border: solid 1px rgba(0, 0, 0, 0.4);
    padding: 15px 0 0;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon {
    color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 22px;
    font-weight: bold;
    padding-left: 15px;
    padding-right: 15px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content {
    color: rgba(0, 0, 0, 0.87);
    padding: 0 15px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons {
    text-align: right;
    padding: 10px;
    margin: -5px 0 0;
    border-top: solid 1px #ddd;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button {
    font-weight: 500;
}

.jconfirm.jconfirm-bootstrap.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0;
}

.jconfirm.jconfirm-modern .jconfirm-bg {
    background-color: #708090;
    opacity: 0.6;
}

.jconfirm.jconfirm-modern .jconfirm-box {
    background-color: #fff;
    -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
    padding: 30px 30px 15px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon {
    color: rgba(0, 0, 0, 0.87);
    top: 15px;
    right: 15px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: block;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 69px;
    color: #aaa;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
    text-align: center;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: background 0.1s;
    transition: background 0.1s;
    padding: 10px 20px;
    width: auto;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button+button {
    margin-left: 4px;
}

.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.renewal-plan .remainbox .percent {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 0 auto;
}

.renewal-plan .remainbox .percent svg {
    width: 150px;
    height: 150px;
    position: relative;
}

.renewal-plan .remainbox .percent svg circle {
    width: 150px;
    height: 150px;
    fill: none;
    stroke-width: 10;
    transform: translate(5px, 5px);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    stroke-linecap: round;
}

.renewal-plan .remainbox .percent svg circle:nth-child(1) {
    stroke-dashoffset: 0;
    stroke: #f3f3f3;
}

.renewal-plan .remainbox .percent svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 1) / 100);
    stroke: #03a9f4;
    transition: .3s all;
}

.renewal-plan .remainbox .percent .num {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #111;
}

.renewal-plan .remainbox .percent .num h2 {
    font-size: 48px;
}

.renewal-plan .remainbox .percent .num h2 span {
    font-size: 24px;
}

.renewal-plan .remainbox .text {
    padding: 10px 0 0;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
}

.renewal-plan .missed-calls-chart {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 0 15px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 800;
    color: #fff !important;
    background: #fd9f2f !important;
}

.renewal-plan .missed-calls-chart span {
    font-size: 12px;
    position: absolute;
    bottom: 32px;
}

.renewal-plan .status-box {
    text-align: justify;
    padding: 0 35px !important;
}

.renewal-plan .full-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.renewal-plan .off {
    font-size: 12px !important;
    position: absolute;
    color: green;
    top: 70px;
    right: 50%;
    transform: translate(50%, 0%);
}

.renewal-plan .attention {
    display: none;
    font-weight: 600;
    color: rgb(251, 80, 80);
}

.renewal-plan .discount-box * {
    flex: 1;
    text-align: center;
}

#discountInput label.separate {
    display: flex;
    align-items: center;
}

#discountInput label.separate.el-rounded span:not(.switch) {
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.extens-options label.separate span:not(.switch) {
    width: 180px !important;
}

.extens-options label.separate .switchContainer {
    width: calc(100% - 180px) !important;
}

@media (max-width: 576px) and (min-width: 0) {
    .mob-mt-10 {
        margin-top: 10px;
    }

    .mob-mt-20 {
        margin-top: 20px;
    }

    .mob-mt-30 {
        margin-top: 30px;
    }

    .mob-mt-40 {
        margin-top: 30px;
    }

    .hidden-xl {
        display: none !important;
    }

    .hidden-lg {
        display: none !important;
    }

    .hidden-md {
        display: none !important;
    }

    .hidden-sm {
        display: none !important;
    }

    .display-xl {
        display: block !important;
    }

    .display-lg {
        display: block !important;
    }

    .display-md {
        display: block !important;
    }

    .display-sm {
        display: block !important;
    }

    .display-sm-inline {
        display: inline !important;
    }

    .center-sm {
        text-align: center;
    }

    .sm-bottom-space {
        margin-bottom: 60px;
    }

    .width-sm-full {
        width: 100% !important;
    }

    form .row,
    .form .row {
        margin-bottom: 0;
    }

    .tiny-placeholder::placeholder {
        font-size: 12px;
    }

    .toast {
        font-size: 14px;
        right: 10px !important;
        width: calc(100% - 20px) !important;
    }

    .dialog .dbox {
        width: calc(100% - 20px) !important;
    }

    #wizardTrunkBtn {
        position: fixed;
        bottom: 0;
        right: 0;
        border-radius: 20px 20px 0 0 !important;
        z-index: 10;
        width: 100%;
        height: auto;
    }

    #wizardTrunkBtn.disabled {
        bottom: -100%;
    }

    .buy-box-headtitle {
        padding: 0px 35px !important;
    }

    .buy-box-headtitle h3 {
        font-size: 18px !important;
    }

    .page.panel aside {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(50, 50, 50, 0.5);
        z-index: 100;
        visibility: hidden;
        width: 100%;
        height: 100%;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .page.panel aside nav,
    .page.panel aside .user,
    .page.panel aside ul,
    .page.panel aside .subLinks {
        width: 250px;
        position: relative;
        right: -100%;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .page.panel aside ul {
        background: #fff;
    }

    .page.panel aside .adminPanel {
        height: calc(100% - 175px) !important;
    }

    .page.panel aside.active {
        visibility: visible;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .page.panel aside.active nav,
    .page.panel aside.active .user,
    .page.panel aside.active ul,
    .page.panel aside.active .subLinks {
        right: 0 !important;
    }

    .page.panel article {
        width: 100%;
        height: auto;
    }

    .page.panel article>.content {
        width: auto;
        margin: 20px 10px;
    }

    .page.panel article>.content .head {
        text-align: center;
    }

    .page.panel article>.content .head .actions {
        float: none;
        text-align: center;
        margin-top: 20px;
    }

    .page.panel article>.content .head .actions a.button {
        display: block !important;
        margin-right: 0;
    }

    .page.panel article>.content .has-list {
        overflow-x: auto;
    }

    .page.panel article>.content .has-list ul.list {
        min-width: 800px;
    }

    .page.panel article>.content .has-list.wide-list ul.list {
        min-width: 1000px;
    }

    .page.panel article>.content .charge-box .item {
        margin-bottom: 10px;
    }

    .page.panel article>.content #dashboardCallsChart {
        height: 250px !important;
    }

    .page.panel article>.content .col-12 {
        margin-bottom: 10px;
    }

    .page.panel article>.content .tab ul.tab-titles {
        margin: -20px -15px 20px -15px;
        font-size: 12px;
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .page.panel article>.content .tab ul.tab-titles li {
        padding: 10px;
    }

    .page.panel article>.content .tab ul.tab-titles li i {
        font-size: 16px;
    }

    .page.panel article>.content .tab ul.tab-titles li p {
        margin-top: -5px;
    }

    .page.panel article>.content ul.list {
        font-size: 13px;
    }

    .page.panel article>.content ul.list li .verticalCenter .button {
        position: static;
        transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }

    .page.panel article>.content ul.list li .verticalCenter .symbol {
        font-size: 20px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
    }

    .page.panel article>.content ul.list.full {
        margin: -15px;
    }

    .page.panel article>.content ul.list-box {
        margin: -10px;
    }

    .page.panel article>.content .services-box .selected {
        white-space: nowrap;
    }

    .page.panel article>.content .service-head-box {
        text-align: center;
    }

    .page.panel article>.content .credit-card-box .pay {
        margin-bottom: -20px !important;
    }

    .page.panel article>.content .pay-box .radio {
        margin-bottom: 10px !important;
    }

    .page.panel article>.content .radio-box {
        /* overflow-x: auto; */
        /* white-space: nowrap; */
        /* flex-wrap: nowrap !important; */
        /* display: table; */
    }

    .page.panel article>.content .radio-box .col-12 {
        /* display: inline-block; */
        /* display: -moz-inline-stack; */
        /* white-space: nowrap; */
        /* max-width: 55%; */
        max-width: 50%;
    }

    .page.panel article>.content .radio-box label {
        padding: 10px !important;
    }

    .page.panel article>.content .radio-box label p {
        font-size: 14px !important;
    }

    .page.panel article>.content .radio-box-rows .radio {
        position: relative;
    }

    .page.panel article>.content .radio-box-rows .radio span.desc {
        display: block;
        margin-right: 15px;
    }

    .page.panel article>.content .radio-box-rows .radio span.price {
        position: absolute;
        top: 10px;
        left: 20px;
        margin-top: 0;
    }

    .page.panel article>.content .receipt-box {
        font-size: 14px;
        padding: 5px 20px 20px 20px;
    }

    .page.panel article>.content .receipt-box .row:not(.sum):not(:last-child) {
        border-bottom: 1px solid #e3e3e3;
    }

    .page.panel article>.content ul.headList {
        padding: 10px;
    }

    .page.panel article>.content ul.headList li {
        font-size: 14px;
        text-align: right;
    }

    .page.panel article>.content ul.headList li i {
        display: inline-block;
        font-size: 14px;
    }

    .page.panel article>.content ul.headList li:last-child {
        margin-bottom: -10px;
    }

    .page.panel article>.content .progress-box .step {
        display: none !important;
    }

    .page.panel article>.content .progress-box .step.current {
        display: block !important;
        width: 100%;
    }

    .page.panel article>.content .progress-box .progress {
        top: 63px;
    }

    .page.panel article>.content .icon-box {
        padding: 35px 0px !important;
    }

    .page.panel .box {
        padding: 20px 15px;
    }

    .page.panel .box .title:before {
        right: -15px;
    }

    .page.panel .box .title.bordered {
        margin: -20px -15px 20px -15px;
        padding: 20px 15px;
    }

    .page.panel .icon-box i.icon {
        display: none;
    }

    .page.panel .sideBox {
        width: 100%;
    }

    .page.panel .asideMenuBtn {
        display: inline-block;
    }

    .page.panel .grid-box .item {
        width: 50%;
        height: auto;
    }

    .page.form {
        overflow-y: auto;
    }

    .page.form .box {
        padding: 20px;
        padding-top: 60px;
    }

    .page.form .content {
        width: calc(100% - 20px);
        position: static !important;
        margin: 10px auto;
        transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }

    .page.form ul.links {
        display: none;
    }

    .page.panel article>.content .services-box-list .item .label {
        font-size: 12px;
    }

    .page.panel article>.content .services-box-list .item .label .mobile-label {
        display: inline-block;
        margin-right: 5px;
    }

    .mobile-overflow-auto {
        overflow: auto !important;
    }

    .toast {
        width: calc(100% - 20px);
        right: 10px;
    }

    .notify-block {
        padding: 10px 10px;
    }

    .notify-block.alarm {
        display: grid;
        justify-content: center;
        justify-items: center;
        grid-gap: 15px;
        text-align: center;
    }

    .notify-block.alarm .countDown li:not(:last-child):after {
        display: none;
    }

    .notify-block.alarm .countDown li span:nth-child(2) {
        display: block;
    }

    .notify-block.alarm .countDown li {
        font-size: 12px;
    }

    .notify-block.alarm .countDown li span {
        font-size: 12px;
    }

    .extens-options label.separate span:not(.switch) {
        width: 48% !important;
    }

    .extens-options label.separate .switchContainer {
        width: calc(100% - 49%) !important;
    }

    .page.panel article>.content .pay-box span.crossed-price {
        top: 0 !important;
        left: 90px !important;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .mob-mt-10 {
        margin-top: 10px;
    }

    .mob-mt-30 {
        margin-top: 30px;
    }

    .hidden-xl {
        display: none !important;
    }

    .hidden-lg {
        display: none !important;
    }

    .hidden-md {
        display: none !important;
    }

    .display-xl {
        display: block !important;
    }

    .display-lg {
        display: block !important;
    }

    .display-md {
        display: block !important;
    }

    .buy-box-headtitle {
        padding: 0px 35px !important;
    }

    .buy-box-headtitle h3 {
        font-size: 18px !important;
    }

    form .row,
    .form .row {
        margin-bottom: 0;
    }

    .page.panel aside {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(50, 50, 50, 0.5);
        z-index: 100;
        visibility: hidden;
        width: 100%;
        height: 100%;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .page.panel aside nav,
    .page.panel aside .user,
    .page.panel aside ul,
    .page.panel aside .subLinks {
        width: 250px;
        position: relative;
        right: -100%;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .page.panel aside ul {
        background: #fff;
    }

    .page.panel aside .adminPanel {
        height: calc(100% - 175px) !important;
    }

    .page.panel aside.active {
        visibility: visible;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .page.panel aside.active nav,
    .page.panel aside.active .user,
    .page.panel aside.active ul,
    .page.panel aside.active .subLinks {
        right: 0 !important;
    }

    .page.panel article {
        width: 100%;
        height: auto;
    }

    .page.panel article>.content {
        width: calc(100% - 60px);
        margin: 20px auto 60px auto;
    }

    .page.panel article>.content .head .actions {
        float: none;
        text-align: center;
        margin-top: 20px;
    }

    .page.panel article>.content .head .actions a.button {
        display: block !important;
        margin-right: 0;
    }

    .page.panel article>.content .has-list {
        overflow-x: auto;
    }

    .page.panel article>.content .has-list ul.list {
        min-width: 800px;
    }

    .page.panel article>.content .has-list.wide-list ul.list {
        min-width: 1000px;
    }

    .page.panel article>.content .charge-box {
        text-align: center;
    }

    .page.panel article>.content #dashboardCallsChart {
        height: 250px !important;
    }

    .page.panel article>.content .col-12 {
        /* margin-bottom: 10px; */
    }

    .page.panel article>.content ul.headList {
        padding: 10px;
    }

    .page.panel article>.content ul.headList li {
        font-size: 14px;
        text-align: right;
    }

    .page.panel article>.content ul.headList li i {
        display: inline-block;
        font-size: 14px;
    }

    .page.panel article>.content ul.headList li:last-child {
        margin-bottom: -10px;
    }

    .page.panel article>.content .radio-box-rows .radio span.desc {
        display: block;
        margin-right: 15px;
    }

    .page.panel article>.content .radio-box-rows .radio span.price {
        margin-top: -45px;
    }

    .page.panel article>.content .progress-box .step {
        display: none !important;
    }

    .page.panel article>.content .progress-box .step.current {
        display: block !important;
        width: 100%;
    }

    .page.panel article>.content .icon-box {
        padding: 35px 0px !important;
    }

    .page.panel .sideBox {
        width: 100%;
    }

    .page.panel .asideMenuBtn {
        display: inline-block;
    }

    .page.panel .grid-box .item {
        width: 50%;
        height: auto;
    }

    .page.form {
        overflow-y: auto;
    }

    .page.form .content {
        width: calc(100% - 40px);
        position: static !important;
        margin: 40px auto;
        transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }

    .page.form ul.links {
        display: none;
    }

    .page.panel article>.content .services-box-list .item .label {
        font-size: 12px;
    }

    .page.panel article>.content .services-box-list .item .label .mobile-label {
        display: inline-block;
        margin-right: 5px;
    }

    .page.panel.smschy article>.content #smsApp .webservice-item .data .configs * {
        width: 100%;
    }

    .dialog .dbox {
        width: calc(100% - 20px) !important;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .dialog .dbox {
        width: calc(100% - 20px) !important;
    }

    .hidden-xl {
        display: none !important;
    }

    .hidden-lg {
        display: none !important;
    }

    .display-xl {
        display: block !important;
    }

    .display-lg {
        display: block !important;
    }

    .page.panel aside {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(50, 50, 50, 0.5);
        z-index: 100;
        visibility: hidden;
        width: 100%;
        height: 100%;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .page.panel aside nav,
    .page.panel aside .user,
    .page.panel aside ul,
    .page.panel aside .subLinks {
        width: 250px;
        position: relative;
        right: -100%;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .page.panel aside ul {
        background: #fff;
    }

    .page.panel aside .adminPanel {
        height: calc(100% - 175px) !important;
    }

    .page.panel aside.active {
        visibility: visible;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .page.panel aside.active nav,
    .page.panel aside.active .user,
    .page.panel aside.active ul,
    .page.panel aside.active .subLinks {
        right: 0 !important;
    }

    .page.panel article {
        width: 100%;
        height: auto;
    }

    .page.panel article>.content {
        width: calc(100% - 80px);
        margin: 20px auto 60px auto;
    }

    .page.panel article>.content .has-list {
        overflow-x: auto;
    }

    .page.panel article>.content .has-list ul.list {
        min-width: 800px;
    }

    .page.panel article>.content .has-list.wide-list ul.list {
        min-width: 1000px;
    }

    .page.panel .sideBox {
        width: 100%;
    }

    .page.panel .asideMenuBtn {
        display: inline-block;
    }

    .page.form ul.links {
        display: none;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .dialog .dbox {
        width: calc(100% - 20px) !important;
    }

    .hidden-xl {
        display: none !important;
    }

    .display-xl {
        display: block !important;
    }

    .page.panel article>.content {
        margin: 20px auto 60px auto;
    }
}

/* smschy css */
.page.panel.smschy article>.content .head {
    margin-bottom: 0px !important;
}

.page.panel.smschy .line-status span.active {
    width: 10px;
    height: 10px;
}

.page.panel.smschy .sms-navbar {
    overflow: auto;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 100px;
    padding: 5px;
}

.page.panel.smschy .sms-navbar a {
    display: inline-block;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    border-radius: 100px;
}

.page.panel.smschy .sms-navbar a.active {
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x !important;
    box-shadow: 0 4px 8px rgb(26 158 212 / 20%);
    color: #fff;
}

.page.panel.smschy .sms-navbar .disabled {
    color: #ccc;
    pointer-events: none;
}

.page.panel.smschy #smsApp {
    margin: 40px 5px 0 5px;
}

.page.panel.smschy article>.content #smsApp label.separate input,
.page.panel.smschy article>.content #smsApp label.separate select {
    width: 100% !important;
}

.page.panel.smschy .section-title {
    font-size: 20px;
}

.page.panel.smschy .status-row {
    margin: 0 0 20px 0;
}

.page.panel.smschy .status-box {
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8EC5FC;
    background-image: linear-gradient(62deg, #2da8dbc7 0%, #fd9f2fcf 100%);
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
    height: 100px;
    opacity: 0.4;
    position: relative;
    box-shadow: 0 4px 8px rgb(26 158 212 / 20%);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.page.panel.smschy .status-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    font-size: 50px;
    transform: translate(0px, -50%);
    opacity: 0.5;
}

.page.panel.smschy .status-content {
    position: absolute;
    top: 50%;
    z-index: 2;
    right: 50%;
    transform: translate(50%, -50%);
    font-size: 18px;
    font-weight: 600;
}

.page.panel.smschy .menu-title {
    display: inline-block;
    background-color: #6c6c6c;
    padding: 14px;
    margin: 0;
    border-radius: 0 100px 100px;
    color: #fff;
    text-align: center;
}

.page.panel.smschy .button i,
.page.panel.smschy .button:hover:not(.disabled) i {
    right: 10px;
}

.page.panel.smschy .actions .button i,
.page.panel.smschy .actions .button:hover:not(.disabled) i {
    right: 0;
    left: 10px;
}

.page.panel.smschy .dir-ltr {
    direction: ltr;
}

.page.panel.smschy .paid-status h2 {
    font-size: 15px;
    text-align: center;
    margin-bottom: 10px;
}

.page.panel.smschy .paid-status p {
    text-align: justify;
    font-size: 15px;
}

.page.panel.smschy .paid-status p a {
    color: #1da0d5;
    font-weight: 600;
}

.page.panel.smschy form {
    margin-top: 20px;
}

.page.panel.smschy .file-uploader .has-value {
    text-align: center !important;
}

.page.panel.smschy .file-uploader .watch-file {
    display: none !important;
}

.page.panel.smschy .databox {
    padding: 15px 25px !important;
}

.page.panel.smschy .form-title {
    margin: 20px 0 20px 0;
    border-top: 1px dashed#ccc;
    padding-top: 10px;
}

.page.panel.smschy .bulk-box .form-title {
    margin: 0;
    margin-bottom: 20px;
    border-top: none;
    padding-top: 0;
}

.page.panel.smschy .bulk-box .numbersCountContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page.panel.smschy .bulk-box .numbersCountContainer span {
    font-weight: 600;
}

.page.panel.smschy .smsPreview {
    background: url("../uploads/phone-mockup.html");
    position: relative;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.page.panel.smschy .smsPreview span {
    position: absolute;
    right: 30%;
    top: 20%;
    background: #99e1ff linear-gradient(-60deg, #bce0ef, #99e1ff) repeat-x !important;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    border-radius: 10px 10px 0 10px;
    padding: 5px 10px;
    min-width: 40%;
    max-width: 40%;
    text-align: right;
    max-height: 73%;
    overflow-y: auto;
}

.page.panel.smschy .full-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* align-items: end; */
}

.page.panel.smschy .flex50 {
    flex: 50%;
    padding: 15px;
}

.page.panel.smschy .sms-demo {
    display: block;
    text-align: justify;
    font-size: 12px;
    font-weight: 100;
}

.page.panel.smschy .bold {
    font-weight: 600;
}

.page.panel.smschy .outgoing-inputs-container input,
.page.panel.smschy .income-inputs-container input,
.page.panel.smschy .birthday-inputs-container input {
    width: 68%;
}

.page.panel.smschy .text-justify {
    text-align: justify;
}

.page.panel.smschy .text-center {
    text-align: center;
}

.page.panel.smschy article>.content .webservice-item .check i {
    right: 0px;
}

.page.panel.smschy article>.content .webservice-item .toggle-active {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0px 10px;
}

.page.panel.smschy .left-0 {
    left: 0 !important;
}

.page.panel.smschy label.separate .choices {
    top: 0px;
}

.page.panel.smschy label.separate span:not(.switch) {
    padding: 8px !important;
}

.page.panel.smschy label.separate {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page.panel.smschy .choices__list--single .choices__item {
    text-align: center;
}

.page.panel.smschy .sms-rules-list {
    list-style: none;
    padding-right: 15px;
}

.page.panel.smschy .sms-text {
    display: flex;
    align-items: center;
}

.page.panel.smschy .sms-text p {
    position: absolute;
    border-radius: 5px;
    padding: 0 10px;
    overflow: hidden;
    height: 35px;
}

.page.panel.smschy .sms-text p:hover {
    background-color: #fff;
    border: 1px solid #eff0f2;
    height: auto;
    z-index: 10;
    text-align: justify;
}

.page.panel.smschy .text-ltr {
    direction: ltr;
}

.page.panel.smschy .sms-text p {
    position: absolute;
    border-radius: 5px;
    padding: 0 10px;
    overflow: hidden;
    height: 35px;
}

.page.panel.smschy .sms-text p:hover {
    background-color: #fff;
    border: 1px solid #eff0f2;
    height: auto;
    z-index: 10;
    text-align: justify;
}

.page.panel.smschy .text-ltr {
    direction: ltr;
}

.page.panel.smschy .details {
    padding: 5px 10px;
    width: 80%;
    margin: 0 auto;
}

.page.panel.smschy #renewalSmsService {
    padding: 8px;
    margin: 15px 0 0 0;
}

.page.panel.smschy #renewalSmsService i {
    right: 10px !important;
    left: 0 !important;
}

.page.panel.smschy .clear {
    margin: 40px 0;
}

.page.panel.smschy .clear2 {
    margin: 20px 0;
}

.page.panel.smschy label.separate .choices {
    top: -1px;
    width: 100% !important;
}

.page.panel.smschy .add-receiver-btn {
    position: absolute;
    top: 55%;
    left: 5%;
    padding: 0px 10px;
    display: none !important;
}

.page.panel.smschy #receivers {
    margin-top: 10px;
    overflow-y: auto;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 0 0 3px rgb(0 0 0 / 5%);
    height: 100px;
    transition: 0.3s all;
}

.page.panel.smschy #receivers li {
    display: inline-block;
    background-color: #a9e7fd;
    padding: 1px 10px 1px 5px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.page.panel.smschy .empty-alert {
    position: absolute;
    top: 55%;
    right: 50%;
    transform: translate(50%, 55%);
    font-weight: 600;
}

.page.panel.smschy label.separate .choices__inner {
    border-radius: 5px !important;
}

.page.panel.smschy .remove-receiver {
    margin-right: 10px;
    cursor: pointer;
}

.page.panel.smschy .remove-receiver:hover {
    color: red;
    transition: 0.1s all;
}

.page.panel.smschy .radio-container {
    display: block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page.panel.smschy .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.page.panel.smschy .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #25a4d8;
}

.page.panel.smschy .radio-container:hover input~.checkmark {
    background-color: #ccc;
}

.page.panel.smschy .radio-container input:checked~.checkmark {
    background-color: #2196F3;
}

.page.panel.smschy .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.page.panel.smschy .radio-container input:checked~.checkmark:after {
    display: block;
}

.page.panel.smschy .radio-container .checkmark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.page.panel.smschy #date-picker label input {
    border-radius: 5px;
    display: none;
}

.page.panel.smschy .flex-full-center {
    justify: center;
    align-items: center;
}

.page.panel.smschy .showDatePicker label input {
    display: block !important;
}

.page.panel.smschy .count-chars {
    text-align: left;
    display: block;
    width: 100%;
    margin-left: 1%;
    margin-bottom: 7px;
    font-size: 13px;
}

.page.panel.smschy .pay-box {
    display: block;
    width: 100%;
}

.page.panel.smschy .pay-box .radio {
    background-color: #fff;
}

.page.panel.smschy article>.content .pay-box {
    margin-bottom: 0;
}

.page.panel.smschy article>.content .pay-box .radio {
    margin-bottom: 0 !important;
}

.page.panel.smschy article>.content .pay-box .radio.active * {
    color: #000 !important;
}

.page.panel.smschy article>.content .pay-box .radio.active .light-color {
    color: #fff !important;
}

.page.panel.smschy .select-zone {
    display: none;
}

.page.panel.smschy .count-chars {
    text-align: left;
    display: block;
    width: 100%;
    margin-left: 1%;
    margin-bottom: 7px;
    font-size: 13px;
}

.page.panel.smschy .dedicateBuyTrunkBox {
    padding: 25px 30px !important;
}

.page.panel.smschy .bulk-box {
    display: block;
    width: 100%;
}

.page.panel.smschy .bulk-box .radio {
    background-color: #fff;
}

.page.panel.smschy article>.content .bulk-box {
    margin-bottom: 0;
}

.page.panel.smschy article>.content .bulk-box .radio {
    margin-bottom: 0 !important;
}

.page.panel.smschy article>.content .bulk-box .radio.active * {
    color: #000 !important;
}

.page.panel.smschy article>.content .bulk-box .radio.active .light-color {
    color: #fff !important;
}

.page.panel.smschy .select-country {
    display: none;
}

.page.panel.smschy .calc-price {
    display: inline-block;
    margin: 0 10px;
    font-weight: 600;
}

.page.panel.smschy .calc-price-container {
    opacity: 0;
}

.page.panel.smschy .country-send-options {
    padding: 10px !important;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.page.panel.smschy .country-send-options input {
    display: block !important;
    width: 140px;
    text-align: center;
    width: 40% !important;
}

.page.panel.smschy article>.content .bulk-box .radio.active {
    height: 150px !important;
}

.page.panel.smschy article>.content .bulk-box .radio.active.country-radio-mobile {
    height: 205px !important;
}

.page.panel.smschy .bulk-box {
    margin-bottom: 30px;
    margin-top: 20px;
}

.page.panel.smschy .bulk-box .row {
    line-height: 30px;
}

.page.panel.smschy .bulk-box .radio {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08);
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel.smschy .bulk-box .radio.disabled {
    background: #f8f8f8;
    cursor: not-allowed;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.page.panel.smschy .bulk-box .radio.active {
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x;
    box-shadow: 0 4px 8px rgba(26, 158, 212, 0.2) !important;
    color: #fff;
}

.page.panel.smschy .bulk-box .radio.active * {
    color: #fff !important;
}

.page.panel.smschy .bulk-box .radio:hover:not(.disabled) {
    box-shadow: 0 5px 50px rgba(50, 50, 50, 0.05);
}

.page.panel.smschy .bulk-box .radio input {
    display: none;
}

.page.panel.smschy .bulk-box .radio p {
    font-size: 16px;
    font-family: "iranyekanmedium";
    font-weight: normal;
}

.page.panel.smschy .bulk-box .radio p.desc {
    font-size: 14px;
    color: #888;
    font-family: "iranyekanlight";
}

.page.panel.smschy .bulk-box .radio.radio-row {
    text-align: right;
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 10px !important;
    font-family: "iranyekanlight";
}

.page.panel.smschy .bulk-box .radio.radio-row i {
    color: #999;
    margin-left: 8px;
}

.page.panel.smschy .bulk-box .radio.radio-row i.fad {
    position: relative;
    top: 2px;
}

.page.panel.smschy .bulk-box .radio.radio-row p {
    font-size: 14px;
    font-family: "iranyekanlight";
}

.page.panel.smschy .bulk-box .radio.radio-row p b {
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel.smschy .bulk-box .radio.radio-row p span {
    color: #999;
    font-size: 12px;
    padding-right: 10px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.page.panel.smschy .bulk-box .radio.radio-row p span.price {
    float: left;
    background: #eee;
    padding-left: 10px;
    margin-left: -10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page.panel.smschy .bulk-box .radio.radio-row.active {
    background: #fff;
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.08) !important;
    border-color: #46d64a;
    color: #333;
}

.page.panel.smschy .bulk-box .radio.radio-row.active * {
    color: #333 !important;
}

.page.panel.smschy .bulk-box .radio.radio-row.active i {
    color: #46d64a !important;
}

.page.panel.smschy .bulk-box .radio.radio-row.active p b {
    color: #46d64a !important;
}

.page.panel.smschy .bulk-box .radio.radio-row.active p span {
    color: #999 !important;
}

.page.panel.smschy .bulk-box .radio.radio-row.active p span.price {
    background: #46d64a;
    color: #fff !important;
}

.page.panel.smschy label.separate .choices {
    top: -1px;
    width: 100% !important;
}

.page.panel.smschy label.separate .choices__inner {
    border-radius: 5px !important;
}

.page.panel.smschy .remove-receiver {
    margin-right: 10px;
    cursor: pointer;
}

.page.panel.smschy .remove-receiver:hover {
    color: red;
    transition: 0.1s all;
}

.page.panel.smschy .radio-container {
    display: block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page.panel.smschy .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.page.panel.smschy .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #25a4d8;
}

.page.panel.smschy .radio-container:hover input~.checkmark {
    background-color: #ccc;
}

.page.panel.smschy .radio-container input:checked~.checkmark {
    background-color: #2196F3;
}

.page.panel.smschy .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.page.panel.smschy .radio-container input:checked~.checkmark:after {
    display: block;
}

.page.panel.smschy .radio-container .checkmark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.page.panel.smschy #date-picker label input {
    border-radius: 5px;
    display: none;
}

.page.panel.smschy .flex-full-center {
    justify: center;
    align-items: center;
}

.page.panel.smschy .showDatePicker label input {
    display: block !important;
}

.page.panel.smschy .loading:not(button) {
    position: absolute;
    background: #e1e1e142;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    border-radius: 20px;
    display: none;
}

@media (max-width: 576px) and (min-width: 0) {
    .page.panel.smschy article>.content .status-row .status-box {
        margin: 0 5px !important;
    }

    .page.panel.smschy #smsApp select {
        width: 100%;
    }

    .page.panel.smschy article>.content #smsApp .webservice-item .data {
        width: 100%;
    }

    .page.panel.smschy article>.content #smsApp .webservice-item .data .configs .full-flex {
        display: block;
    }

    .page.panel.smschy article>.content #smsApp .webservice-item .data .configs * {
        width: 100%;
    }

    .page.panel.smschy article>.content #smsApp .webservice-item .data .configs p {
        margin-top: 20px;
    }

    .page.panel.smschy label.separate select {
        width: 100% !important;
    }

    .page.panel.smschy #date-picker label input {
        width: 100%;
    }

    .page.panel.smschy label.separate select {
        width: 100% !important;
    }

    .page.panel.smschy #date-picker label input {
        width: 100%;
    }

    .page.panel.smschy article>.content .radio-box {
        overflow-x: unset !important;
        flex-wrap: wrap !important;
    }

    .page.panel.smschy article>.content .radio-box .col-12 {
        max-width: 100% !important;
    }

    .page.panel article>.content ul#invoicesList li .button {
        display: table-caption !important;
    }

    .extenMetaData {
        display: grid !important;
        justify-content: start !important;
    }

    .extenMetaData b {
        text-align: right;
    }

    .extens-actions-container a {
        width: 48% !important;
    }
}

/* contacts page css */
.page.panel.contacts .addNewLabelAction {
    display: flex;
    align-items: center;
}

.page.panel.contacts .addNewLabelAction input {
    flex: 85%;
    height: 41px;
}

.page.panel.contacts .addNewLabelAction button {
    flex: 15%;
}

.page.panel.contacts .addNewLabelAction button i {
    margin: 0;
    top: 0 !important;
}

.page.panel.contacts .labelsList ul {
    list-style: none;
    text-align: right;
    list-style: none;
    text-align: right;
    height: 140px;
    overflow-y: auto;
}

.page.panel.contacts .labelsList ul li {
    background: #f3f3f3;
    border-radius: 100px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.page.panel.contacts .labelsList ul li:hover {
    background: #e7f5fa;
    transition: 0.3s all;
    cursor: pointer;
}

.page.panel.contacts .contactName {
    margin-top: -7px;
}

.page.panel.contacts .labelText {
    display: block;
    font-size: 10px;
    margin: 0;
    line-height: 0;
}

.page.panel.contacts #date-picker input {
    width: 100%;
    border-radius: 5px;
}

.page.panel.contacts label.separate .choices {
    width: calc(100%) !important;
}

.page.panel.contacts .bold-item {
    font-weight: 600;
}

.page.panel.contacts #groupPopUpAction {
    position: fixed;
    bottom: 20px;
    right: 55%;
    transform: translate(45%, 0);
    background: #fff;
    width: 300px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px 2px #ccc;
    z-index: 2;
    display: none;
}

.page.panel.contacts #groupPopUpAction .delete {
    padding: 0;
    border-radius: 100px !important;
    width: 35px;
    height: 35px;
}

.page.panel.contacts #groupPopUpAction .delete i,
.page.panel.contacts #groupPopUpAction .delete:hover i {
    margin: 0 !important;
    right: 0 !important;
    left: 0 !important;
}

.page.panel.contacts .labelContainer {
    border-radius: 15px;
    height: auto;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.page.panel.contacts .labelContainer:not(:last-of-type) {
    margin-bottom: 15px;
}

.page.panel.contacts .labelContainer.unLabeledBox {
    background: #f7f7f7;
    border: 1px dashed #cccccca8;
}

.page.panel.contacts .labelContainer.labeledBox {
    background: #1a9ed40a;
    border: 1px dashed #1a9ed452;
}

.page.panel.contacts .labelContainer .actions {
    display: flex;
    justify-content: space-evenly;
}

.page.panel.contacts .labelContainer .actions button {
    padding: 0;
    border-radius: 100px !important;
    width: 35px;
    height: 35px;
}

.page.panel.contacts .labelContainer .actions button i,
.page.panel.contacts .labelContainer .actions button:hover i {
    margin: 0 !important;
    right: 0 !important;
    left: 0 !important;
}

.autoOverflow-x {
    overflow-x: auto;
}

/* additional css */
.serverTypeLabel {
    background-color: #a5a5a5;
    border-radius: 5px;
    color: #fff;
    width: 70px;
    font-weight: 600;
    margin: 0 auto;
    line-height: 30px;
}

.serverTypeTinyLabel {
    position: absolute;
    left: 2.5px;
    top: 2px;
    height: 30px;
    line-height: 23px;
}

.alignCenter {
    align-items: center;
}

.relative {
    position: relative;
}

.insectionRowTitle {
    display: block;
    width: 100%;
    margin: -20px 15px 0px 0;
}

#serviceDemo {
    padding: 35px 30px !important;
}

#criteriaList {
    padding: 10px;
}

.horizontal-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.horizontal-menu a {
    position: relative;
}

.horizontal-menu a:hover {
    color: #000;
}

.horizontal-menu a:not(.active) {
    color: #999;
}

.horizontal-menu a.active::after {
    content: ' ';
    position: absolute;
    display: block;
    background: #ccc;
    width: 100%;
    height: 2px;
    right: 50%;
    bottom: -30px;
    transform: translate(50%, 0px);
}

.calls-monitoring {
    position: relative;
    align-items: center;
}

.calls-monitoring .loading {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    font-weight: 600;
    visibility: hidden;
}

.calls-monitoring-details {
    text-align: center;
    margin-top: 10px;
}

.calls-monitoring-details audio {
    width: 70%;
    display: block;
    margin: 5px auto 0;
}

.calls-monitoring-labels {
    display: inline-block;
}

.calls-monitoring .label.success {
    background: #46d64a5e !important;
    color: #000 !important;
}

.calls-monitoring .label.warning {
    background: #fd9f2f70 !important;
    color: #000 !important;
}

.calls-monitoring .label .fa-wifi-slash {
    color: #f54237 !important;
}

.forms-list {
    border-bottom: none !important;
}

.forms-list button {
    width: auto;
    padding: 5px 7px;
    border-radius: 100px;
    margin: 0 auto;
}

.forms-list button i,
.forms-list button:hover i {
    left: 0 !important;
    margin: 0 !important;
}

.forms-list .dataArray {
    text-align: center;
    direction: ltr;
}

.trunk-discount-countdown ul {
    list-style: none;
    display: flex;
    direction: ltr;
    justify-content: center;
}

.trunk-discount-countdown ul li span.days,
.trunk-discount-countdown ul li span.hours,
.trunk-discount-countdown ul li span.minutes,
.trunk-discount-countdown ul li span.seconds {
    background: #fd9f2f;
    padding: 0px 5px;
    color: #fff;
    border-radius: 5px;
    margin: 0 5px;
    font-weight: 600;
    font-size: 16px;
    width: 30px;
    display: inline-block;
    text-align: center;
}

.trunk-discount-countdown ul li span.seprator {
    font-size: 18px;
    font-weight: 600;
}

.auth-form-label span {
    position: absolute;
    top: -40px;
    right: 5px;
    font-weight: 600;
}

#contractBoxPart {
    display: none;
}

#contractBoxPart .guide {
    margin-top: 30px;
    text-align: justify;
}

#troubleshoot-results .notify-block {
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#troubleshoot-results .notify-block .notify-button {
    background: #fafafa;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

.extenMetaData {
    display: flex;
    justify-content: space-around;
    background: #fafafa;
    margin: 10px auto 0;
    border-radius: 5px;
    max-width: 98% !important;
}

.page.panel article>.content ul.list li:hover:not(.first) .extenMetaData {
    background: #ffffff !important;
}

#voiceRecorder {
    position: relative;
}

#voiceRecorder audio.playback {
    flex: 10;
    display: none;
    width: 100%;
    margin: 20px 0;
}

#voiceRecorder #record {
    position: relative;
    background: #1a9ed4 linear-gradient(-60deg, #6ccff6, #1a9ed4) repeat-x !important;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    margin: 20px auto;
}

#voiceRecorder #record i {
    top: 15px !important;
    position: absolute;
    opacity: 0.3;
    font-size: 30px;
}

#voiceRecorder .wave {
    position: absolute;
    top: 79px;
    right: 38%;
    z-index: -1;
}

.wave .circle-animation.layer1 {
    -webkit-animation: waves infinite linear;
    animation: waves infinite linear;
    -webkit-animation-delay: infinite;
    animation-delay: infinite;
}

.wave .circle-animation.layer2 {
    -webkit-animation: waves infinite linear 0.7s forwards;
    animation: waves infinite linear 0.7s forwards;
}

.wave .circle-animation.layer3 {
    -webkit-animation: waves infinite linear 1.3s forwards;
    animation: waves infinite linear 1.3s forwards;
}

.wave .circle-animation.layer4 {
    -webkit-animation: waves infinite linear 1.9s forwards;
    animation: waves infinite linear 1.9s forwards;
}

.wave .circle-animation {
    display: block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #0194c71a;
    margin: 10px;
    transition: 5s ease;
    position: absolute;
    top: -10px;
    z-index: 1;
}

@-webkit-keyframes waves {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@-webkit-keyframes bloop {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bloop {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

.notify-block.alarm .countDown {
    height: auto;
    min-width: 200px;
    padding-left: 15px;
}

.notify-block.alarm .countDown .bloc-time {
    float: left;
    margin-right: 15px;
    text-align: center;
}

.notify-block.alarm .countDown .bloc-time:last-child {
    margin-right: 0;
}

.notify-block.alarm .countDown .count-title {
    display: block;
    margin-bottom: 15px;
    font: normal 20px "Lato";
    color: #1a1a1a;
    text-transform: uppercase;
}

.notify-block.alarm .countDown .figure {
    position: relative;
    float: left;
    height: 35px;
    width: 22px;
    margin-right: 5px;
    background-color: #fff;
    border-radius: 5px;
    -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
}

.notify-block.alarm .countDown .figure:last-child {
    margin-right: 0;
}

.notify-block.alarm .countDown .figure>span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font: normal 28px "Lato";
    font-weight: 700;
    color: #de4848;
}

.notify-block.alarm .countDown .figure .top:after,
.notify-block.alarm .countDown .figure .bottom-back:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notify-block.alarm .countDown .figure .top {
    z-index: 3;
    background-color: #f7f7f7;
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -moz-transform: perspective(200px);
    -ms-transform: perspective(200px);
    -webkit-transform: perspective(200px);
    transform: perspective(200px);
}

.notify-block.alarm .countDown .figure .bottom {
    z-index: 1;
}

.notify-block.alarm .countDown .figure .bottom:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.02);
}

.notify-block.alarm .countDown .figure .bottom-back {
    z-index: 2;
    top: 0;
    height: 50%;
    overflow: hidden;
    background-color: #f7f7f7;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}

.notify-block.alarm .countDown .figure .bottom-back span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.notify-block.alarm .countDown .figure .top,
.notify-block.alarm .countDown .figure .top-back {
    height: 50%;
    overflow: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.notify-block.alarm .countDown .figure .top-back {
    z-index: 4;
    bottom: 0;
    background-color: #fff;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -moz-transform: perspective(200px) rotateX(180deg);
    -ms-transform: perspective(200px) rotateX(180deg);
    -webkit-transform: perspective(200px) rotateX(180deg);
    transform: perspective(200px) rotateX(180deg);
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.notify-block.alarm .countDown .figure .top-back span {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    margin: auto;
}

#invoicesList a.invoiceDeleteBtn {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;
}

#invoicesList a.invoiceDeleteBtn i {
    position: relative;
    top: 0 !important;
    right: 0;
    margin: 0;
}

.setStatusForm .choices {
    top: -6px !important;
}

.setStatusForm textarea {
    position: relative;
    top: 3px;
}

.saveStatus {
    background-color: #07c707;
    color: #fff;
    padding: 2px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.saveStatus:hover {
    color: #fff !important;
    background-color: #09a709;
}

.statusTextSpan {
    display: block;
    font-size: 10px;
    line-height: 15px;
}

.alignCenter {
    align-items: center;
}

.logDetailBtn {
    padding: 0 15px !important;
}

.server-status-box {
    border: 2px dashed #ccc;
    padding: 10px 15px;
    border-radius: 10px;
    background: #fff;
    margin-top: 12px;
    text-align: left;
}

.user-trackings .steps-container {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    margin: 0 !important;
    padding: 15px 15px 5px;
}

.user-trackings .step {
    color: #000;
    background: #bdbdbd;
    font-weight: 800;
    padding: 0 10px;
    border-radius: 5px;
    position: relative;
}

.user-trackings .step:not(:first-child)::after {
    content: " ";
    width: 18px;
    height: 2px;
    background-color: #bdbdbd;
    position: absolute;
    top: 50%;
    left: 100%;
}

.user-trackings .step.success {
    background-color: #46d64a40;
    color: #46d64a !important;
}

.user-trackings .step.success * {
    color: #46d64a !important;
}

.user-trackings .step.alert {
    background-color: #f5423726;
    color: #f54237 !important;
}

.user-trackings .step.alert * {
    color: #f54237 !important;
}

.user-trackings .step.disable {
    background-color: #a8a8a836;
    color: #878787 !important;
    cursor: not-allowed;
}

.user-trackings .step.disable * {
    color: #878787 !important;
}

.set-user-status-text {
    position: absolute;
    top: 10px;
    right: 15px;
}

.google-drive-status-container {
    position: relative !important;
    padding: 0 !important;
}

.google-drive-status-bar {
    display: block;
    height: 20px;
    border-radius: 10px;
}

.google-drive-status-percentage {
    position: absolute;
    top: -2px;
    right: 50%;
    transform: translate(50%, 0px);
}

.deleteMessage,
.uploadAttachment {
    color: #fff !important;
    padding: 5px 10px !important;
    font-size: 20px !important;
    line-height: 25px !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    opacity: 0 !important;
    transition: all 0.2s ease !important;
    transform: scale(0.5, 0.5) !important;
}

.chat-box .item .text:hover .deleteMessage,
.chat-box .item .file:hover .deleteMessage,
.chat-box .item .text:hover .uploadAttachment,
.chat-box .item .file:hover .uploadAttachment {
    opacity: 1 !important;
    transform: scale(1, 1) !important;
}

.driver-popover,
.driver-popover-title,
.driver-popover-description,
.driver-popover-footer button,
.driver-popover-progress-text {
    font-family: 'iranyekanlight' !important;
}

.driver-popover-close-btn {
    right: 89% !important;
    top: 2px !important;
    font-size: 24px !important;
}

.driver-popover-footer button {
    margin: 0 4px !important;
}

.driver-popover-footer button:hover,
.driver-popover-close-btn {
    color: #000 !important;
}

.ai-agent-chat-base-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1001;
}

.ai-agent-chat-toggle-button {
    background-color: #0076ce;
    color: white;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 1000;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ai-agent-chat-toggle-button i {
    right: -2px;
    top: -1px !important;
}

/* .ai-agent-chat-base-container::after {
    content: "پشتیبانی هوشمند";
    background: #fda837;
    width: 125px;
    height: 25px;
    position: absolute;
    top: 7px;
    right: -100px;
    z-index: 999;
    border-radius: 5px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    display: flex;
    padding: 3px 10px;
} */
.ai-agent-chat-container {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 360px;
    max-height: 600px;
    display: none;
    flex-direction: column;
    background-color: white;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 99999;
}

.ai-agent-chat-container.active {
    display: flex;
    animation: chatFadeIn 0.3s ease-in-out;
    z-index: 99999;
}

@keyframes chatFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ai-agent-chat-header {
    background: linear-gradient(to left, #0076ce, #00a6f5);
    color: white;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
}

.ai-agent-chat-body {
    flex: 1;
    padding: 16px;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fdfdfd;
}

.ai-agent-chat-footer {
    display: flex;
    padding: 12px;
    border-top: 1px solid #eee;
    background-color: white;
}

.ai-agent-chat-footer input {
    flex: 5;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    margin-left: 8px;
}

.ai-agent-chat-footer button {
    flex: 1;
    background-color: #0076ce;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: bold;
}

.ai-agent-message {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-end;
    gap: 8px;
}

.ai-agent-message ul,
.ai-agent-message ol {
    margin-right: 10px !important;
}

.ai-agent-message.user {
    justify-content: flex-end;
}

.ai-agent-message.user .ai-agent-avatar i {
    color: #fff;
    top: -1px;
}

.ai-agent-message.bot {
    justify-content: flex-start;
}

.ai-agent-message.bot .ai-agent-avatar {
    background: linear-gradient(to left, #0076ce, #00a6f5);
}

.ai-agent-message.bot .ai-agent-avatar i {
    color: #fff;
    top: -1px;
}

.ai-agent-bubble {
    padding: 10px 14px;
    background-color: #eeeeee;
    border-radius: 16px;
    max-width: 80%;
    line-height: 1.6;
    font-size: 14px;
}

.ai-agent-message.user .ai-agent-bubble {
    background-color: #d1ecf9;
}

.ai-agent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.ai-agent-typing-indicator {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    margin-right: 8px;
    display: none;
}

.ivr-ticket-reply-speaker label {
    cursor: pointer;
}

.quick-notes .delete-quick-note {
    cursor: pointer;
}

#authLoginForm .otp {
    letter-spacing: 20px;
    font-weight: 600;
}

#authLoginForm .otp::placeholder {
    letter-spacing: normal;
}

#authLoginForm .otp::-moz-placeholder {
    letter-spacing: normal;
}

#fetchNewTrunksFoot {
    width: 160px;
    display: flex !important;
    align-items: center;
}

.followup-documents-star {
    position: absolute;
    right: -43px;
    box-shadow: 0 0 20px -5px #ccc;
    background: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    font-weight: 800;
    border: 1px solid #e9e9e9;
    border-left: none;
    width: 40px;
}

.followup-documents-star i {
    color: #fdb642;
}

.user-special-actions button,
.user-special-actions .button {
    height: 60px !important;
}

.tickets-unread-box-alert {
    display: block;
    padding: 15px 10px;
    width: 98%;
    margin: 0 auto 10px;
    background: #fdab39;
    border-radius: 10px;
    color: #fff;
    border-color: #f54237;
    box-shadow: 0 0 0 4px rgba(234, 67, 53, 0.15);
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.attendance-table .table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.attendance-table .table th,
.attendance-table .table td {
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

.attendance-table .table th {
    background-color: #f2f2f2;
    color: #555;
    font-weight: bold;
}

.attendance-table .table tr:hover {
    background-color: #f5f5f5;
}

.attendance-table .item h2 {
    font-family: 'B Nazanin', 'Tahoma', sans-serif;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}